diff options
author | tnn <tnn@pkgsrc.org> | 2009-09-08 08:42:45 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-09-08 08:42:45 +0000 |
commit | a3318ec143d4ea9d914e3f23015328a92c52e82b (patch) | |
tree | d2d63a98ef9579e0b1bf4c395c8717ab467f489a /net | |
parent | 3caed84d8a125d6db934fd9dd205fe5e62d70f3d (diff) | |
download | pkgsrc-a3318ec143d4ea9d914e3f23015328a92c52e82b.tar.gz |
turn on inet6 by default if the platform supports it. Bump revision.
Diffstat (limited to 'net')
-rw-r--r-- | net/bind96/Makefile | 3 | ||||
-rw-r--r-- | net/bind96/options.mk | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/net/bind96/Makefile b/net/bind96/Makefile index 7f2ad3628e1..f03165c52c0 100644 --- a/net/bind96/Makefile +++ b/net/bind96/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2009/08/15 01:30:57 jklos Exp $ +# $NetBSD: Makefile,v 1.9 2009/09/08 08:42:45 tnn Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P1/pl1/} +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${BIND_VERSION}/ \ http://ftp.belnet.be/pub/mirror/ftp.isc.org/isc/bind9/${BIND_VERSION}/ diff --git a/net/bind96/options.mk b/net/bind96/options.mk index b169e26d3cc..7da75ddde10 100644 --- a/net/bind96/options.mk +++ b/net/bind96/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2009/07/26 09:07:58 obache Exp $ +# $NetBSD: options.mk,v 1.3 2009/09/08 08:42:45 tnn Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.bind96 PKG_SUPPORTED_OPTIONS= bind-dig-sigchase bind-xml-statistics-server @@ -16,6 +16,10 @@ PKG_SUPPORTED_OPTIONS+= inet6 threads mysql pgsql ldap dlz-filesystem PKG_SUGGESTED_OPTIONS+= threads .endif +.if empty(MISSING_FEATURES:Minet6) +PKG_SUGGESTED_OPTIONS+= inet6 +.endif + .include "../../mk/bsd.options.mk" ### |