blob: 0959478e40f713fa1b62a8d328dbc1a282f123bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: options.mk,v 1.2 2012/06/12 15:46:03 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.dnssec-tools
PKG_SUPPORTED_OPTIONS= inet6 dlv
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --with-ipv6
.else
CONFIGURE_ARGS+= --without-ipv6
.endif
###
### DLV support
###
.if !empty(PKG_OPTIONS:Mdlv)
CONFIGURE_ARGS+= --with-dlv
.else
CONFIGURE_ARGS+= --without-dlv
.endif
|