diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-12-29 21:32:27 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-12-29 21:32:27 +0000 |
commit | 575a6431fc461ef24aae8251bc0e734e9d42c66e (patch) | |
tree | b583d943420c5d212583ae33dd615f9f04393dc0 /games/quakeforge | |
parent | - Fix clients statically linked to libQFrenderer_sw being unable to load (diff) |
- Correctly disable the use of installed libraries if not selected in OPTIONS.
Notes
Notes:
svn path=/head/; revision=181004
Diffstat (limited to 'games/quakeforge')
-rw-r--r-- | games/quakeforge/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games/quakeforge/Makefile b/games/quakeforge/Makefile index c6ddf5054867..5fb2bc8b715a 100644 --- a/games/quakeforge/Makefile +++ b/games/quakeforge/Makefile @@ -58,7 +58,7 @@ USE_SDL= sdl CONFIGURE_ARGS+=--with-sdl=${LOCALBASE} PLIST_SUB+= SDL="" .else -CONFIGURE_ARGS+=--without-sdl +CONFIGURE_ARGS+=--disable-sdl PLIST_SUB+= SDL="@comment " .endif @@ -67,7 +67,7 @@ LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis CONFIGURE_ARGS+=--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE} PLIST_SUB+= VORBIS="" .else -CONFIGURE_ARGS+=--without-ogg --without-vorbis +CONFIGURE_ARGS+=--disable-ogg --disable-vorbis PLIST_SUB+= VORBIS="@comment " .endif @@ -76,12 +76,12 @@ LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms CONFIGURE_ARGS+=--with-xmms-prefix=${X11BASE} PLIST_SUB+= XMMS="" .else -CONFIGURE_ARGS+=--without-xmms +CONFIGURE_ARGS+=--disable-xmms PLIST_SUB+= XMMS="@comment " .endif .else -CONFIGURE_ARGS+=--without-clients +CONFIGURE_ARGS+=--with-clients="" PLIST_SUB+= CLIENTS="@comment " .endif # WITH_CLIENTS @@ -96,7 +96,7 @@ CFLAGS+= -ffast-math .if !defined(WITHOUT_SERVERS) PLIST_SUB+= SERVERS="" .else -CONFIGURE_ARGS+=--without-servers +CONFIGURE_ARGS+=--with-servers="" PLIST_SUB+= SERVERS="@comment " .endif |