summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2010-04-23 08:56:26 +0000
committertron <tron@pkgsrc.org>2010-04-23 08:56:26 +0000
commit8e172adfabfa0144f0e0a83f4fef554e87383426 (patch)
tree9f3753cdd700e63a92fb4d54f67e2ee51e0bc946 /net
parentacaf66baa45f4a6446b1dc1e5953d4b54c0bf9b3 (diff)
downloadpkgsrc-8e172adfabfa0144f0e0a83f4fef554e87383426.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.
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..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