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 /audio/replay | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-graphics-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-graphics-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-graphics-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 'audio/replay')
-rw-r--r-- | audio/replay/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/replay/Makefile b/audio/replay/Makefile index 6413ab593e0..90d051c9ba5 100644 --- a/audio/replay/Makefile +++ b/audio/replay/Makefile @@ -26,15 +26,15 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GTK_CONFIG="${GTK_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" -.if defined(USE_I18N) +.if defined(WITH_I18N) CONFIGURE_ARGS+= --enable-i18n=JAPANESE .endif pre-configure: -.if !defined(USE_I18N) +.if !defined(WITH_I18N) @${ECHO_MSG} @${ECHO_MSG} "If you would like build replay with I18N support" - @${ECHO_MSG} "you must set the variable USE_I18N" + @${ECHO_MSG} "you must set the variable WITH_I18N" @${ECHO_MSG} "(Now JAPANESE only)" @${ECHO_MSG} .else |