svn commit: r564045 - head/games/joequake

Jan Beich jbeich at FreeBSD.org
Thu Feb 4 17:12:55 UTC 2021


Author: jbeich
Date: Thu Feb  4 17:12:53 2021
New Revision: 564045
URL: https://svnweb.freebsd.org/changeset/ports/564045

Log:
  games/joequake: unbreak with libglvnd
  
  vid_glx.c:42:10: fatal error: 'X11/extensions/xf86vmode.h' file not found
   #include <X11/extensions/xf86vmode.h>
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  Reported by:	antoine (via bug 246767 exp-run)

Modified:
  head/games/joequake/Makefile   (contents, props changed)

Modified: head/games/joequake/Makefile
==============================================================================
--- head/games/joequake/Makefile	Thu Feb  4 17:12:48 2021	(r564044)
+++ head/games/joequake/Makefile	Thu Feb  4 17:12:53 2021	(r564045)
@@ -39,8 +39,9 @@ X86_ASM_DESC= Enable x86 assembly code
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MOPENGL}
-USES+=		gl jpeg
+USES+=		gl jpeg xorg
 USE_GL=		yes
+USE_XORG+=	xxf86vm
 ALL_TARGET+=	glx
 PLIST_SUB+=	GLX=""
 .else
@@ -77,7 +78,7 @@ MAKE_ENV+=	USE_${f}=NO
 
 .if ${PORT_OPTIONS:MX11}
 USES+=		xorg
-USE_XORG=	xxf86dga
+USE_XORG+=	xxf86dga
 ALL_TARGET+=	x11
 PLIST_SUB+=	X11=""
 .else


More information about the svn-ports-all mailing list