Merge from vendor branch TNF:
[pkgsrc.git] / security / dnssec-tools / options.mk
1 # $NetBSD$
2
3 PKG_OPTIONS_VAR=                PKG_OPTIONS.dnssec-tools
4 PKG_SUPPORTED_OPTIONS=          inet6 dlv
5 PKG_SUGGESTED_OPTIONS=
6
7 .include "../../mk/bsd.options.mk"
8
9 .if !empty(PKG_OPTIONS:Minet6)
10 CONFIGURE_ARGS+=        --with-ipv6
11 .else
12 CONFIGURE_ARGS+=        --without-ipv6
13 .endif
14
15 ###
16 ### DLV support
17 ###
18 .if !empty(PKG_OPTIONS:Mdlv)
19 CONFIGURE_ARGS+=        --with-dlv
20 .else
21 CONFIGURE_ARGS+=        --without-dlv
22 .endif