diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-02 08:30:11 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-02 08:30:11 +0000 |
commit | 4558367d7c999dfdfa7ed00b9fc2308bb72144ee (patch) | |
tree | 6434e3f23926cd6253d2db554c3f6f46af28bc75 /games/quakeforge | |
parent | 165ef83f6bd90d0d312d27391093876cb3aa56b4 (diff) |
USE_GLX --> WITH_GLX
Notes
Notes:
svn path=/head/; revision=29094
Diffstat (limited to 'games/quakeforge')
-rw-r--r-- | games/quakeforge/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/quakeforge/Makefile b/games/quakeforge/Makefile index e433e8c1f9c4..33b5ce6dd884 100644 --- a/games/quakeforge/Makefile +++ b/games/quakeforge/Makefile @@ -35,7 +35,7 @@ CONFIGURE_ARGS= "--with-sdl=${LOCALBASE}" CONFIGURE_ENV= "SDL_LIBS=`sdl-config --libs`" \ "SDL_CFLAGS=`sdl-config --cflags`" -.if defined(USE_GLX) +.if defined(WITH_GLX) GL_DEPENDS= GL.1:${PORTSDIR}/graphics/utah-glx BINARIES+= quake-gl qw-client-gl .else @@ -50,14 +50,14 @@ BINDIR= ${PREFIX}/bin .endif pre-configure: -.if !defined(USE_GLX) - @${ECHO_MSG} "Define USE_GLX to use GLX (otherwise it is explicitly disabled!)" +.if !defined(WITH_GLX) + @${ECHO_MSG} "Define WITH_GLX to use GLX (otherwise it is explicitly disabled!)" .endif do-install: @${CP} ${PKGDIR}/PLIST ${PLIST} -.if defined(USE_GLX) +.if defined(WITH_GLX) @${CAT} ${PKGDIR}/PLIST.glx >>${PLIST} .endif |