diff options
author | gls <gls> | 2010-04-22 20:22:26 +0000 |
---|---|---|
committer | gls <gls> | 2010-04-22 20:22:26 +0000 |
commit | 2d4ae9a405b9502ca1b5dca2745083118fcf6ea3 (patch) | |
tree | 2ed09bf92190d1a4412b2659032f0e644f0f0f0d /net | |
parent | 8d34e8b98efd4f390348f5e1060181a0fb6afb28 (diff) | |
download | pkgsrc-2d4ae9a405b9502ca1b5dca2745083118fcf6ea3.tar.gz |
Disable kqueue on Dragonfly to make bind96 work.
As reported by Justin Sherrill in PR pkg/43195.
Bump PKGREVISION.
Diffstat (limited to 'net')
-rw-r--r-- | net/bind96/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/bind96/Makefile b/net/bind96/Makefile index 5fb42339421..85b13729e5b 100644 --- a/net/bind96/Makefile +++ b/net/bind96/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2010/01/20 01:01:15 taca Exp $ +# $NetBSD: Makefile,v 1.15 2010/04/22 20:22:26 gls Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P/pl/} +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}/ @@ -40,6 +41,9 @@ CONFIGURE_ARGS+= --disable-atomic .if ${MACHINE_PLATFORM:MNetBSD-*-powerpc} != "" CONFIGURE_ARGS+= --disable-threads .endif +.if ${OPSYS} == "DragonFly" +CONFIGURE_ARGS+= --disable-kqueue +.endif PKG_GROUPS_VARS+= BIND_GROUP PKG_USERS_VARS+= BIND_USER |