diff options
author | miwi <miwi@FreeBSD.org> | 2011-11-28 19:36:53 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-11-28 19:36:53 +0800 |
commit | ac3f8e78fb19584e0f37b15f8cd9970a9feab7b2 (patch) | |
tree | 8568eaa19e94c95b2de43e01a934520883b088b0 /dns/nsd/Makefile | |
parent | 81b620f653ce2cf786b9bcb31ff0239f17303c4a (diff) | |
download | freebsd-ports-gnome-ac3f8e78fb19584e0f37b15f8cd9970a9feab7b2.tar.gz freebsd-ports-gnome-ac3f8e78fb19584e0f37b15f8cd9970a9feab7b2.tar.zst freebsd-ports-gnome-ac3f8e78fb19584e0f37b15f8cd9970a9feab7b2.zip |
- Update to 3.2.9
PR: 162782
Submitted by: Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer)
Feature safe: yes
Diffstat (limited to 'dns/nsd/Makefile')
-rw-r--r-- | dns/nsd/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/dns/nsd/Makefile b/dns/nsd/Makefile index e3743deab1f8..014f08fa5a27 100644 --- a/dns/nsd/Makefile +++ b/dns/nsd/Makefile @@ -6,7 +6,7 @@ # PORTNAME= nsd -PORTVERSION= 3.2.8 +PORTVERSION= 3.2.9 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ @@ -55,6 +55,8 @@ OPTIONS= ROOT_SERVER "Configure NSD as a root server" Off \ BIND8_STATS "Enable BIND8 like NSTATS & XSTATS" Off \ CHECKING "Enable internal runtime checks" Off \ NSEC3 "Enable NSEC3 support" On \ + MINRESPSIZE "Enable minimized response size" On \ + NSEC3PREHASH "Enable full NSEC3 prehashing" On \ MMAP "Use mmap instead of malloc(experimental)" Off \ MAXIPS "Raise max-ips from 8 to ${NSDMAX_IPS}" Off @@ -92,6 +94,14 @@ CONFIGURE_ARGS+= --disable-tsig CONFIGURE_ARGS+= --disable-nsec3 .endif +.if defined(WITHOUT_MINRESPSIZE) +CONFIGURE_ARGS+= --disable-minimal-responses +.endif + +.if defined(WITHOUT_NSEC3PREHASH) +CONFIGURE_ARGS+= --disable-disable-full-prehash +.endif + .if defined(WITHOUT_NSID) CONFIGURE_ARGS+= --disable-nsid .endif |