7d2d66b7e6
configured for IPv4 only. IPv6 can still be enabled via PKG_OPTIONS. Fixes my PR pkg/38957 ok gdt@
14 lines
335 B
Makefile
14 lines
335 B
Makefile
# $NetBSD: options.mk,v 1.1 2008/07/29 17:21:39 pgoyette Exp $
|
|
|
|
# Since amanda's ipv6 usage is broken, turn it off by default.
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.amanda
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --with-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ipv6
|
|
.endif
|