svn commit: r527073 - head/x11-servers/xorg-server

Piotr Kubaj pkubaj at FreeBSD.org
Tue Feb 25 10:45:52 UTC 2020


Author: pkubaj
Date: Tue Feb 25 10:45:51 2020
New Revision: 527073
URL: https://svnweb.freebsd.org/changeset/ports/527073

Log:
  x11-servers/xorg-server: fix build on GCC architectures
  
  Use C11 compiler:
  In file included from glxserver.h:70,
                   from singlepix.c:35:
  ../include/glx_extinit.h:33: error: redefinition of typedef '__GLXscreen'
  glxscreens.h:119: error: previous declaration of '__GLXscreen' was here

Modified:
  head/x11-servers/xorg-server/Makefile

Modified: head/x11-servers/xorg-server/Makefile
==============================================================================
--- head/x11-servers/xorg-server/Makefile	Tue Feb 25 10:38:48 2020	(r527072)
+++ head/x11-servers/xorg-server/Makefile	Tue Feb 25 10:45:51 2020	(r527073)
@@ -56,7 +56,7 @@ DEFAULT_FONTPATH_LIST= \
 DEFAULT_FONTPATH_CMD=${ECHO_CMD} ${DEFAULT_FONTPATH_LIST} | ${TR} ' ' ,
 PLIST_SUB+=	FONTPATHD="${FONTPATHD:S,^${PREFIX}/,,}"
 
-USES=		gl gmake perl5 ssl xorg xorg-cat:xserver
+USES=		compiler:c11 gl gmake perl5 ssl xorg xorg-cat:xserver
 USE_PERL5=	build
 USE_GL+=	gl
 USE_XORG+=	pixman xau xdmcp xfont2 xkbfile xorgproto xshmfence xtrans


More information about the svn-ports-all mailing list