summaryrefslogtreecommitdiff
path: root/dns/bind9-dlz/files/configure.bind9-dlz
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-11-03 06:23:02 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-11-03 06:23:02 +0000
commit14882a48e1c6d34adabb86153496d8d549d21b92 (patch)
tree377bd7cb2bf628015516cd3c7535b1ba20e2cfe6 /dns/bind9-dlz/files/configure.bind9-dlz
parentFix port to be more selective regarding the mastersites to use. (diff)
- update DLZ to 0.6.0
- add berkleydb support - add openldap support - improved documentation
Notes
Notes: svn path=/head/; revision=92928
Diffstat (limited to '')
-rw-r--r--dns/bind9-dlz/files/configure.bind9-dlz23
1 files changed, 22 insertions, 1 deletions
diff --git a/dns/bind9-dlz/files/configure.bind9-dlz b/dns/bind9-dlz/files/configure.bind9-dlz
index 69c77b34b8f3..8aca828c9cb2 100644
--- a/dns/bind9-dlz/files/configure.bind9-dlz
+++ b/dns/bind9-dlz/files/configure.bind9-dlz
@@ -11,12 +11,16 @@ if [ "${BINDDLZ_OPTIONS}" ]; then
else
dialog --title "configuration options" --clear \
--checklist "\n\
-Please select desired options:" -1 -1 7 \
+Please select desired options:" -1 -1 11 \
OpenSSL "OpenSSL support" ON \
PostgreSQL "PostgreSQL driver" ON \
MySQL323 "MySQL 3.23 driver" OFF \
MySQL40 "MySQL 4.0 driver" OFF \
MySQL41 "MySQL 4.1 driver" OFF \
+OpenLDAP20 "OpenLDAP 2.0 backend" OFF \
+OpenLDAP21 "OpenLDAP 2.1 backend" OFF \
+OpenLDAP22 "OpenLDAP 2.2 backend" OFF \
+BerkleyDB41 "BerkleyDB 4.1 backend" OFF \
FileSystem "Filesystem driver" ON \
Stub "Stub driver" OFF \
2> /tmp/checklist.tmp.$$
@@ -61,6 +65,23 @@ while [ "$1" ]; do
echo WITH_MYSQL_DRIVER=YES
echo MYSQL_PORT?=databases/mysql41-client
;;
+ \"OpenLDAP20\")
+ echo WITH_LDAP=YES
+ echo LDAP_PORT?=net/openldap20-client
+ ;;
+ \"OpenLDAP21\")
+ echo WITH_LDAP=YES
+ echo LDAP_PORT?=net/openldap21-client
+ ;;
+ \"OpenLDAP22\")
+ echo WITH_LDAP=YES
+ echo LDAP_PORT?=net/openldap22-client
+ ;;
+ \"BerkleyDB41\")
+ echo WITH_BERKLEYDB_DRIVER=YES
+ echo BERKLEYDB_LIB?=db41.1
+ echo BERKLEYDB_PORT?=databases/db41
+ ;;
\"FileSystem\")
echo WITH_FILESYSTEM_DRIVER=YES
;;