svn commit: r542818 - head/x11-wm/spectrwm

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jul 21 23:26:32 UTC 2020


Author: pkubaj
Date: Tue Jul 21 23:26:32 2020
New Revision: 542818
URL: https://svnweb.freebsd.org/changeset/ports/542818

Log:
  x11-wm/spectrwm: fix build on GCC architectures
  
  Switch to newer GCC to workaround -Werror:
  /usr/local/include/xcb/xinput.h:3072: warning: this decimal constant is unsigned only in ISO C90
  
  Adding -Wno-error doesn't fix it, it's still overwritten by -Werror.
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/x11-wm/spectrwm/Makefile

Modified: head/x11-wm/spectrwm/Makefile
==============================================================================
--- head/x11-wm/spectrwm/Makefile	Tue Jul 21 23:23:59 2020	(r542817)
+++ head/x11-wm/spectrwm/Makefile	Tue Jul 21 23:26:32 2020	(r542818)
@@ -23,7 +23,7 @@ OPTIONS_DEFINE= EXAMPLES
 
 .include	<bsd.port.options.mk>
 
-USES=		xorg
+USES=		compiler:c11 xorg
 USE_XORG=	x11 xcb xcursor xft xrandr xt
 
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list