svn commit: r542819 - branches/2020Q3/x11-wm/spectrwm

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jul 21 23:27:35 UTC 2020


Author: pkubaj
Date: Tue Jul 21 23:27:34 2020
New Revision: 542819
URL: https://svnweb.freebsd.org/changeset/ports/542819

Log:
  MFH: r542818
  
  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.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/x11-wm/spectrwm/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/x11-wm/spectrwm/Makefile
==============================================================================
--- branches/2020Q3/x11-wm/spectrwm/Makefile	Tue Jul 21 23:26:32 2020	(r542818)
+++ branches/2020Q3/x11-wm/spectrwm/Makefile	Tue Jul 21 23:27:34 2020	(r542819)
@@ -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