diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /www/udmsearch | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.gz |
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 'www/udmsearch')
-rw-r--r-- | www/udmsearch/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/udmsearch/Makefile b/www/udmsearch/Makefile index 0dc8776..a8a5bb1 100644 --- a/www/udmsearch/Makefile +++ b/www/udmsearch/Makefile @@ -22,11 +22,11 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --bindir=${PREFIX}/bin/udmsearch \ --sysconfdir=${PREFIX}/etc/udmsearch -.if defined(USE_POSTGRESQL) +.if defined(WITH_POSTGRESQL) LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql CONFIGURE_ARGS+= --with-pgsql -.elif defined(USE_MSQL) +.elif defined(WITH_MSQL) BUILD_DEPENDS= ${PREFIX}/lib/libmsql.a:${PORTSDIR}/databases/msql CONFIGURE_ARGS+= --with-msql @@ -36,14 +36,14 @@ CONFIGURE_ARGS+= --with-msql LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client CONFIGURE_ARGS+= --with-mysql -.if !defined(USE_MYSQL) +.if !defined(WITH_MYSQL) pre-fetch: @${ECHO} @${ECHO} "Defaulting to udmsearch with mysql support." @${ECHO} @${ECHO} "You may alternately build udmsearch with either msql or" - @${ECHO} "postgresql support by invoking make with USE_MSQL=yes or" - @${ECHO} "USE_POSTGRESQL=yes respectively." + @${ECHO} "postgresql support by invoking make with WITH_MSQL=yes or" + @${ECHO} "WITH_POSTGRESQL=yes respectively." @${ECHO} .endif |