pkgsrc/security/dnssec-tools/options.mk
pettai 639fa84a11 The DNSSEC-Tools project is about creating a set of software tools, patches,
applications, wrappers, extensions, and plugins that will help ease
the deployment of DNSSEC related technologies.
2010-07-22 21:08:26 +00:00

22 lines
434 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2010/07/22 21:08:26 pettai Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.dnssec-tools
PKG_SUPPORTED_OPTIONS= inet6 dlv
PKG_SUGGESTED_OPTIONS=
.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