Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 2021 17:12:53 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r564045 - head/games/joequake
Message-ID:  <202102041712.114HCr8x000657@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102041712.114HCr8x000657>