diff options
author | dougb <dougb@FreeBSD.org> | 2005-06-29 16:10:25 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2005-06-29 16:10:25 +0800 |
commit | 9efefb80accb005a384abbd0685d66b8ee2c972b (patch) | |
tree | 44cc80c673b58924e1ee64e40c3a73f2a2b3e28e /dns/bind95 | |
parent | c017e9aab1841a529087199cd7a352500fba6be1 (diff) | |
download | freebsd-ports-gnome-9efefb80accb005a384abbd0685d66b8ee2c972b.tar.gz freebsd-ports-gnome-9efefb80accb005a384abbd0685d66b8ee2c972b.tar.zst freebsd-ports-gnome-9efefb80accb005a384abbd0685d66b8ee2c972b.zip |
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.
Diffstat (limited to 'dns/bind95')
-rw-r--r-- | dns/bind95/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dns/bind95/Makefile b/dns/bind95/Makefile index 44cce6cd68c7..ed42babb841f 100644 --- a/dns/bind95/Makefile +++ b/dns/bind95/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 |