diff options
author | dougb <dougb@FreeBSD.org> | 2005-03-17 15:07:51 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2005-03-17 15:07:51 +0800 |
commit | be1aec143bc3698856f9bbdd3a80143678e1731b (patch) | |
tree | 48c4acf768bbef0a41ad19fb9024d56ff9fab9c7 /dns/bind9 | |
parent | 1872e5c1c0ef42e51a1f784b8c6746eaf9a6f876 (diff) | |
download | freebsd-ports-gnome-be1aec143bc3698856f9bbdd3a80143678e1731b.tar.gz freebsd-ports-gnome-be1aec143bc3698856f9bbdd3a80143678e1731b.tar.zst freebsd-ports-gnome-be1aec143bc3698856f9bbdd3a80143678e1731b.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/bind9')
-rw-r--r-- | dns/bind9/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dns/bind9/Makefile b/dns/bind9/Makefile index bc120919033b..44cce6cd68c7 100644 --- a/dns/bind9/Makefile +++ b/dns/bind9/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 |