summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron>2010-04-23 08:56:26 +0000
committertron <tron>2010-04-23 08:56:26 +0000
commit494c8c15438254102d16aef700cc751d9629983a (patch)
tree9f3753cdd700e63a92fb4d54f67e2ee51e0bc946
parent38c820e8d84736bcd017d6fee651ba1acacdae49 (diff)
downloadpkgsrc-494c8c15438254102d16aef700cc751d9629983a.tar.gz
Pullup ticket #3090 - requested by gls
net/bind95: portability fix Revisions pulled up: - net/bind95/Makefile 1.17 --- Module Name: pkgsrc Committed By: gls Date: Thu Apr 22 20:21:09 UTC 2010 Modified Files: pkgsrc/net/bind95: Makefile Log Message: Disable kqueue on Dragonfly to make bind95 work. As reported by Justin Sherrill in PR pkg/43195. Bump PKGREVISION.
-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..02cb59851db 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.16.2.1 2010/04/23 08:56:26 tron 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