diff options
author | Doug Barton <dougb@FreeBSD.org> | 2005-03-17 15:07:51 +0800 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2005-03-17 15:07:51 +0800 |
commit | 96dbf2741c10ae5da8792da7bfea5f0f4e9394f9 (patch) | |
tree | 5ab48c97dfbd1ad2367858995bf3c9eaeb4dfb9c /dns/bind94 | |
parent | 8cc150076ac2e8f997a7d4821a48971c4546a607 (diff) | |
download | freebsd-ports-gnome-96dbf2741c10ae5da8792da7bfea5f0f4e9394f9.tar.gz freebsd-ports-gnome-96dbf2741c10ae5da8792da7bfea5f0f4e9394f9.tar.zst freebsd-ports-gnome-96dbf2741c10ae5da8792da7bfea5f0f4e9394f9.zip |
1. The OPTIONS stuff isn't working the way it should according to reports,
so rip it out until I have a chance to debug it.
2. Improve the comment about deprecating an old knob.
Diffstat (limited to 'dns/bind94')
-rw-r--r-- | dns/bind94/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dns/bind94/Makefile b/dns/bind94/Makefile index bc120919033b..44cce6cd68c7 100644 --- a/dns/bind94/Makefile +++ b/dns/bind94/Makefile @@ -32,10 +32,7 @@ CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps --with-openssl \ USE_OPENSSL= yes -OPTIONS= BIND9_THREADS "Support in 9.3.x is much improved" on \ - PORT_REPLACES_BASE_BIND9 "Completely replace system BIND" off - -.if defined(WITH_BIND9_THREADS) || defined(PACKAGE_BUILDING) +.if !defined(WITHOUT_BIND9_THREADS) || defined(PACKAGE_BUILDING) CONFIGURE_ARGS+= --enable-threads .else CONFIGURE_ARGS+= --disable-threads @@ -98,6 +95,7 @@ pre-fetch: @${ECHO} "***************************************************" @${ECHO} "Support for the old PORT_REPLACES_BASE_BIND9 option" @${ECHO} "will be removed in future versions of the port." + @${ECHO} "Use WITH_PORT_REPLACES_BASE_BIND9 instead." @${ECHO} "***************************************************" @${ECHO} "" @/bin/sleep 5 |