aboutsummaryrefslogtreecommitdiff
path: root/dns
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2005-05-06 11:50:25 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2005-05-06 11:50:25 +0000
commitfbc2c13312cfed29fa555ed6a753c07e5defce25 (patch)
tree9267c71ab13a3bd108581df79b5ff634d94bf12f /dns
parent36c70e504828797757112839141be5ba60a5e24f (diff)
downloadports-fbc2c13312cfed29fa555ed6a753c07e5defce25.tar.gz
ports-fbc2c13312cfed29fa555ed6a753c07e5defce25.zip
Notes
Diffstat (limited to 'dns')
-rw-r--r--dns/nsd/Makefile2
-rw-r--r--dns/nsd/distinfo4
-rw-r--r--dns/nsd/scripts/configure.nsd6
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"