summaryrefslogtreecommitdiff
path: root/dns/bind94
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2005-06-29 08:10:25 +0000
committerDoug Barton <dougb@FreeBSD.org>2005-06-29 08:10:25 +0000
commit6d4b4b627b710cffac5038f7de10066d9fb84312 (patch)
tree96cc8c58b74276a20c9c0bc8309ccc9ba311fc1a /dns/bind94
parent- sysutils/portupgrade: add option for BDB4: (diff)
ISC staff has informed me that in BIND 9.3.x, threads are always a
bad idea, so disable them in all cases unless the user has affirmatively requested this through the define.
Notes
Notes: svn path=/head/; revision=138160
Diffstat (limited to 'dns/bind94')
-rw-r--r--dns/bind94/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/dns/bind94/Makefile b/dns/bind94/Makefile
index 44cce6cd68c7..ed42babb841f 100644
--- a/dns/bind94/Makefile
+++ b/dns/bind94/Makefile
@@ -32,7 +32,9 @@ CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps --with-openssl \
USE_OPENSSL= yes
-.if !defined(WITHOUT_BIND9_THREADS) || defined(PACKAGE_BUILDING)
+# ISC staff has informed me that for 9.3.x, threads are always a bad idea.
+# Leave the affirmative option for those that want to experiment.
+.if defined(WITH_BIND9_THREADS)
CONFIGURE_ARGS+= --enable-threads
.else
CONFIGURE_ARGS+= --disable-threads