summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorgls <gls>2010-04-22 20:21:09 +0000
committergls <gls>2010-04-22 20:21:09 +0000
commit8d34e8b98efd4f390348f5e1060181a0fb6afb28 (patch)
treef5d85a7acde53cc20765f95d46987cef9ac0b5fd /net
parente6799bde76ce5d2d3690e06cb2b2f0a59a6bb477 (diff)
downloadpkgsrc-8d34e8b98efd4f390348f5e1060181a0fb6afb28.tar.gz
Disable kqueue on Dragonfly to make bind95 work.
As reported by Justin Sherrill in PR pkg/43195. Bump PKGREVISION.
Diffstat (limited to 'net')
-rw-r--r--net/bind95/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/net/bind95/Makefile b/net/bind95/Makefile
index bb97183697a..936added20b 100644
--- a/net/bind95/Makefile
+++ b/net/bind95/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.16 2010/01/21 19:42:16 spz Exp $
+# $NetBSD: Makefile,v 1.17 2010/04/22 20:21:09 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}/
@@ -88,3 +89,7 @@ CONFIGURE_ARGS+= --disable-threads
.else
CONFIGURE_ARGS+= --enable-threads
.endif
+
+.if ${OPSYS} == "DragonFly"
+CONFIGURE_ARGS+= --disable-kqueue
+.endif