diff options
author | novel <novel@FreeBSD.org> | 2005-05-06 19:50:25 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2005-05-06 19:50:25 +0800 |
commit | 88d20af9d0a9d697f63fb6364dfa9c18ed4a86b6 (patch) | |
tree | fb80ceca3f05d0dc8f7f22be5e63213deb33bf17 /dns/nsd | |
parent | 18bc321fda058d3a93b3ef045720a001553d3c6d (diff) | |
download | freebsd-ports-gnome-88d20af9d0a9d697f63fb6364dfa9c18ed4a86b6.tar.gz freebsd-ports-gnome-88d20af9d0a9d697f63fb6364dfa9c18ed4a86b6.tar.zst freebsd-ports-gnome-88d20af9d0a9d697f63fb6364dfa9c18ed4a86b6.zip |
Update to 2.3.0
PR: 80654
Submitted by: Olafur Osvaldsson (maintainer)
Diffstat (limited to 'dns/nsd')
-rw-r--r-- | dns/nsd/Makefile | 2 | ||||
-rw-r--r-- | dns/nsd/distinfo | 4 | ||||
-rw-r--r-- | dns/nsd/scripts/configure.nsd | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/dns/nsd/Makefile b/dns/nsd/Makefile index ee191c80b20a..d35087794b4b 100644 --- a/dns/nsd/Makefile +++ b/dns/nsd/Makefile @@ -13,7 +13,7 @@ # NSD_OPTIONS can be set in /etc/make.conf also. PORTNAME= nsd -PORTVERSION= 2.2.1 +PORTVERSION= 2.3.0 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ diff --git a/dns/nsd/distinfo b/dns/nsd/distinfo index 8ceec5b5c6c7..fa6c13ee3a69 100644 --- a/dns/nsd/distinfo +++ b/dns/nsd/distinfo @@ -1,2 +1,2 @@ -MD5 (nsd-2.2.1.tar.gz) = 6875cb2495122654334e6234ebeb9d98 -SIZE (nsd-2.2.1.tar.gz) = 231676 +MD5 (nsd-2.3.0.tar.gz) = 76512e7d188d3da4a83d0d3cc6c9399e +SIZE (nsd-2.3.0.tar.gz) = 232288 diff --git a/dns/nsd/scripts/configure.nsd b/dns/nsd/scripts/configure.nsd index f67ab73e5296..8e82c7ee9ec2 100644 --- a/dns/nsd/scripts/configure.nsd +++ b/dns/nsd/scripts/configure.nsd @@ -21,7 +21,7 @@ if [ -z "${BATCH}" ]; then Please select desired options:" -1 -1 16 \ ROOT_SERVER "Configure NSD as a root server" "$status_ROOT_SERVER" \ NOIPv6 "Disable IPv6 support" "$status_NOIPv6" \ -DNSSEC "Enable experimental DNSSEC support according to the latest drafts." "$status_DNSSEC" \ +NODNSSEC "Disable DNSSEC" "$status_NODNSSEC" \ NOAXFR "Disable AXFR" "$status_NOAXFR" \ BIND8_STATS "Enable BIND8 like NSTATS & XSTATS" "$status_BIND8_STATS" \ PLUGINS "Enable plugin support" "$status_PLUGINS" \ @@ -58,8 +58,8 @@ while [ "$1" ]; do NOIPv6) echo "CONFIGURE_ARGS+= --disable-ipv6" ;; - DNSSEC) - echo "CONFIGURE_ARGS+= --enable-dnssec" + NODNSSEC) + echo "CONFIGURE_ARGS+= --disable-dnssec" ;; NOAXFR) echo "CONFIGURE_ARGS+= --disable-axfr" |