svn commit: r508586 - head/x11/kanshi

Jan Beich jbeich at FreeBSD.org
Sun Aug 11 06:40:51 UTC 2019


Author: jbeich
Date: Sun Aug 11 06:40:50 2019
New Revision: 508586
URL: https://svnweb.freebsd.org/changeset/ports/508586

Log:
  x11/kanshi: unbreak on GCC architectures
  
  cc1: warnings being treated as errors
  ../parser.c: In function 'parse_config':
  ../parser.c:266: warning: 'key' may be used uninitialized in this function
  ../parser.c:266: note: 'key' was declared here

Modified:
  head/x11/kanshi/Makefile   (contents, props changed)

Modified: head/x11/kanshi/Makefile
==============================================================================
--- head/x11/kanshi/Makefile	Sun Aug 11 06:40:40 2019	(r508585)
+++ head/x11/kanshi/Makefile	Sun Aug 11 06:40:50 2019	(r508586)
@@ -13,7 +13,7 @@ LICENSE=	MIT
 
 LIB_DEPENDS=	libwayland-client.so:graphics/wayland
 
-USES=		meson pkgconfig
+USES=		compiler:c11 meson pkgconfig
 USE_GITHUB=	yes
 GH_ACCOUNT=	emersion
 GH_TAGNAME=	76e9f41


More information about the svn-ports-all mailing list