diff options
author | Doug Barton <dougb@FreeBSD.org> | 2008-07-16 20:39:24 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2008-07-16 20:39:24 +0000 |
commit | 79ba42d10b3b786fd6f008447b91578e1605630b (patch) | |
tree | 5ae78354005af5c9615bcf11c97c8b1e6bb6e3d8 /dns | |
parent | 71dfff77194244beef163ebc5b1387f7c2d1a61c (diff) | |
download | freebsd-ports-79ba42d10b3b786fd6f008447b91578e1605630b.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')
-rw-r--r-- | dns/bind94/Makefile | 5 | ||||
-rw-r--r-- | dns/bind95/Makefile | 5 | ||||
-rw-r--r-- | dns/bind96/Makefile | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/dns/bind94/Makefile b/dns/bind94/Makefile index a3eacba25b7c..7f055694b260 100644 --- a/dns/bind94/Makefile +++ b/dns/bind94/Makefile @@ -38,6 +38,7 @@ CONFLICTS= bind9-9.[35].* bind9-dlz-* bind9-sdb-ldap-* host-* OPTIONS= 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> @@ -59,6 +60,10 @@ CONFIGURE_ARGS+= --with-openssl 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 diff --git a/dns/bind95/Makefile b/dns/bind95/Makefile index a058ed8210da..bb0377e53f5e 100644 --- a/dns/bind95/Makefile +++ b/dns/bind95/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 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 |