diff options
author | gls <gls> | 2010-04-22 20:22:26 +0000 |
---|---|---|
committer | gls <gls> | 2010-04-22 20:22:26 +0000 |
commit | d90653c734b627464642cc7f3b3eda868f7a952d (patch) | |
tree | 2ed09bf92190d1a4412b2659032f0e644f0f0f0d /net/bind96 | |
parent | 61b71536de146c17941659640b63c65bc804e310 (diff) | |
download | pkgsrc-d90653c734b627464642cc7f3b3eda868f7a952d.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/bind96')
-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 |