diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2001-01-29 15:22:24 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2001-01-29 15:22:24 +0000 |
commit | 0aaf43f7bd4043e6c5e23566c1b7867c1343c5aa (patch) | |
tree | b34343da0102e08dbf3f2a4b347e0b2684b86835 /www/mnogosearch31 | |
parent | 452f0fa690229f23d52d318301b95a6547810cdd (diff) |
Since there is no ability to turn off charset guesser when compiled in, add it
only when specially requested via env. variable
Notes
Notes:
svn path=/head/; revision=37754
Diffstat (limited to 'www/mnogosearch31')
-rw-r--r-- | www/mnogosearch31/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/mnogosearch31/Makefile b/www/mnogosearch31/Makefile index 096310588ece..78827749c95b 100644 --- a/www/mnogosearch31/Makefile +++ b/www/mnogosearch31/Makefile @@ -21,10 +21,13 @@ INSTALLS_SHLIB= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared \ - --enable-charset-guesser \ --sysconfdir=${PREFIX}/etc/mnogosearch \ --localstatedir=/var/mnogosearch +.if defined(WITH_MNOGO_GUESSER) +CONFIGURE_ARGS+= --enable-charset-guesser +.endif + .if defined(WITH_MNOGO_PGSQL) LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7 CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE}/pgsql |