aboutsummaryrefslogtreecommitdiffstats
path: root/dns/bind96
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2008-07-17 04:39:24 +0800
committerdougb <dougb@FreeBSD.org>2008-07-17 04:39:24 +0800
commitcc4d0cc5284bdcf7045154e6e99ea6e92de09480 (patch)
tree476a1bcea302cf9dd775379f2b207f04890f89a8 /dns/bind96
parent14748ae501f427a51476cf7a8edddeaa5b44ed3c (diff)
downloadfreebsd-ports-cc4d0cc5284bdcf7045154e6e99ea6e92de09480.tar.gz
freebsd-ports-cc4d0cc5284bdcf7045154e6e99ea6e92de09480.tar.zst
freebsd-ports-cc4d0cc5284bdcf7045154e6e99ea6e92de09480.zip
Add an OPTION to turn on the ability of dns/host/nslookup to do
DNSSEC validation. This is off by default, so no PORTREVISION bump. Submitted by: Andrei V. Lavreniyuk <andy.lavr@reactor-xg.kiev.ua>
Diffstat (limited to 'dns/bind96')
-rw-r--r--dns/bind96/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/dns/bind96/Makefile b/dns/bind96/Makefile
index a058ed8210da..bb0377e53f5e 100644
--- a/dns/bind96/Makefile
+++ b/dns/bind96/Makefile
@@ -39,6 +39,7 @@ OPTIONS= XML "Support for xml statistics output" on \
IDN "Add IDN support to dig, host, etc." off \
REPLACE_BASE "Replace base BIND with this version" off \
LARGE_FILE "64-bit file support" off \
+ SIGCHASE "dig/host/nslookup will do DNSSEC validation" off \
IPV6 "IPv6 Support (autodetected by default)" off
.include <bsd.port.pre.mk>
@@ -74,6 +75,10 @@ CONFIGURE_ARGS+= --without-idn
CONFIGURE_ARGS+= --enable-largefile
.endif
+.if defined(WITH_SIGCHASE)
+CONFIGURE_ARGS+= STD_CDEFINES="-DDIG_SIGCHASE=1"
+.endif
+
.if defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.endif