diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-16 16:40:30 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-16 16:40:30 +0000 |
commit | 3aafe20c325477139511b91ce60579cf12f84b2e (patch) | |
tree | a92e0c1ac0446b650e6a365b795d21b3d7a94dcc /dns/bind9-dlz/files | |
parent | new port: misc/susv2 (Single UNIX Specification Version 2) (diff) |
- set BINDDLZ_OPTIONS in Makefile
- clean up configure script
- Filesystem-Driver default ON
- new option: WITHOUT_POSTGRESQL_DRIVER
- new option: WITHOUT_FILESYSTEM_DRIVER
- new option: WITHOUT_OPENSSL
- target describe for INDEX now with matching dependencies.
Diffstat (limited to 'dns/bind9-dlz/files')
-rw-r--r-- | dns/bind9-dlz/files/configure.bind9-dlz | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/dns/bind9-dlz/files/configure.bind9-dlz b/dns/bind9-dlz/files/configure.bind9-dlz index cf6e0b06b488..26e7a56cacc7 100644 --- a/dns/bind9-dlz/files/configure.bind9-dlz +++ b/dns/bind9-dlz/files/configure.bind9-dlz @@ -6,12 +6,8 @@ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit fi -if [ "${BATCH}" -o "${BINDDLZ_OPTIONS}" ]; then - if [ "${BINDDLZ_OPTIONS}" ]; then - set ${BINDDLZ_OPTIONS} - else - set \"OpenSSL\" \"PostgreSQL\" \"FileSystem\" - fi +if [ "${BINDDLZ_OPTIONS}" ]; then + set ${BINDDLZ_OPTIONS} else dialog --title "configuration options" --clear \ --checklist "\n\ @@ -19,7 +15,7 @@ Please select desired options:" -1 -1 5 \ OpenSSL "OpenSSL support" ON \ PostgreSQL "PostgreSQL driver" ON \ MySQL "MySQL driver" OFF \ -FileSystem "Filesystem driver" OFF \ +FileSystem "Filesystem driver" ON \ Stub "Stub driver" OFF \ 2> /tmp/checklist.tmp.$$ @@ -50,7 +46,6 @@ while [ "$1" ]; do ;; \"PostgreSQL\") echo WITH_POSTGRESQL_DRIVER=YES - WITH_POSTGRESQL_DRIVER=1 ;; \"MySQL\") echo WITH_MYSQL_DRIVER=YES |