diff options
author | erwin <erwin@FreeBSD.org> | 2013-11-04 19:23:11 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2013-11-04 19:23:11 +0800 |
commit | 0c79f0b30d6bb5439c27fe91d10f2604c35578b2 (patch) | |
tree | a042f52c733ddb14b5f439acf161f05db96cad85 /dns/bind99/Makefile | |
parent | 8da00ab743c5ec2b78636ee7bd5fcdf353ced354 (diff) | |
download | freebsd-ports-gnome-0c79f0b30d6bb5439c27fe91d10f2604c35578b2.tar.gz freebsd-ports-gnome-0c79f0b30d6bb5439c27fe91d10f2604c35578b2.tar.zst freebsd-ports-gnome-0c79f0b30d6bb5439c27fe91d10f2604c35578b2.zip |
Drop support for REPLACE_BIND option after BIND was removed from base,
there's nothing to replace.
Diffstat (limited to 'dns/bind99/Makefile')
-rw-r--r-- | dns/bind99/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dns/bind99/Makefile b/dns/bind99/Makefile index 4ee7bbe35c1c..0d3e16be015a 100644 --- a/dns/bind99/Makefile +++ b/dns/bind99/Makefile @@ -37,7 +37,7 @@ OPTIONS_GROUP_DLZ= DLZ_POSTGRESQL DLZ_MYSQL DLZ_BDB \ .endif # BIND_TOOLS_SLAVE SSL_DESC= Build with OpenSSL (Required for DNSSEC) -REPLACE_BASE_DESC= Replace base BIND with this version +REPLACE_BASE_DESC= Replace base BIND (FreeBSD 9.x and earlier) LARGE_FILE_DESC= 64-bit file support FIXED_RRSET_DESC= Enable fixed rrset ordering SIGCHASE_DESC= dig/host/nslookup will do DNSSEC validation @@ -169,6 +169,9 @@ CONFIGURE_ARGS+= --without-gssapi .endif .if ${PORT_OPTIONS:MREPLACE_BASE} +.if ${OSVERSION} >= 1000500 +IGNORE= REPLACE_BASE option is not supported on this release +.endif PKGNAMESUFFIX= -base PREFIX= /usr BIND_DESTETC= /etc/namedb |