Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Sep 2018 12:49:02 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480381 - in head/games: xpilot-ng-client xpilot-ng-server
Message-ID:  <201809221249.w8MCn2KB086999@repo.freebsd.org>

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



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