svn commit: r480381 - in head/games: xpilot-ng-client xpilot-ng-server

Niclas Zeising zeising at FreeBSD.org
Sat Sep 22 12:49:03 UTC 2018


Author: zeising
Date: Sat Sep 22 12:49:01 2018
New Revision: 480381
URL: https://svnweb.freebsd.org/changeset/ports/480381

Log:
  Fix build after switch to USES=gl
  
  Fix build by using USES=gl properly, instead of USE_GL=yes.  The latter
  caused issues on the slave port.
  
  PR:		230692
  Reported by:	antoine

Modified:
  head/games/xpilot-ng-client/Makefile
  head/games/xpilot-ng-server/Makefile

Modified: head/games/xpilot-ng-client/Makefile
==============================================================================
--- head/games/xpilot-ng-client/Makefile	Sat Sep 22 10:44:56 2018	(r480380)
+++ head/games/xpilot-ng-client/Makefile	Sat Sep 22 12:49:01 2018	(r480381)
@@ -9,6 +9,6 @@ COMMENT=	Enhanced version of XPilot (client program)
 MASTERDIR=	${.CURDIR}/../xpilot-ng-server
 
 USE_XORG=	x11 xext xxf86misc
-USE_GL=		gl
+USES=		gl
 
 .include "${MASTERDIR}/Makefile"

Modified: head/games/xpilot-ng-server/Makefile
==============================================================================
--- head/games/xpilot-ng-server/Makefile	Sat Sep 22 10:44:56 2018	(r480380)
+++ head/games/xpilot-ng-server/Makefile	Sat Sep 22 12:49:01 2018	(r480381)
@@ -50,7 +50,8 @@ SOUND_CONFIGURE_ENABLE=	sound
 SOUND_USES=	openal:al,alut
 
 SDL_CONFIGURE_ENABLE=	sdl-client
-SDL_USE=	SDL=image,sdl,ttf GL=yes
+SDL_USE=	SDL=image,sdl,ttf GL=gl
+SDL_USES=	gl
 .endif
 
 .include <bsd.port.options.mk>


More information about the svn-ports-head mailing list