diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /games/acm | |
parent | Replace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff) |
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 |