diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /games/acm | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.zip |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Diffstat (limited to 'games/acm')
-rw-r--r-- | games/acm/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games/acm/Makefile b/games/acm/Makefile index ddb5dca8faf7..8b6339b5d0e7 100644 --- a/games/acm/Makefile +++ b/games/acm/Makefile @@ -20,9 +20,8 @@ MAN6= acm.6 .include <bsd.port.pre.mk> # Include sound support (Use network audio server (nas)) -.if defined(USE_SOUND) && ${USE_SOUND} == YES || \ - exists(${PREFIX}/lib/libaudio.a) && \ - (!defined(USE_SOUND) || ${USE_SOUND} != NO) +.if defined(WITH_SOUND) || (exists(${PREFIX}/lib/libaudio.a) \ + && !defined(WITHOUT_SOUND)) LIB_DEPENDS+= audio.7:${PORTSDIR}/audio/nas .endif |