summaryrefslogtreecommitdiff
path: root/net/bind9
diff options
context:
space:
mode:
authorjklos <jklos>2004-12-18 21:01:46 +0000
committerjklos <jklos>2004-12-18 21:01:46 +0000
commit75504b6d988bd5c74555fca90a035af972c63e26 (patch)
tree24ff0f62d248158b4bf95f7f867a0508ba759d85 /net/bind9
parent4d802d2f13a1ec76e31b94b467a3c10b2a9e5e84 (diff)
downloadpkgsrc-75504b6d988bd5c74555fca90a035af972c63e26.tar.gz
BIND 9.3.0 dies right after launch on VAX and m68k when threading is
enabled. Until this is fixed, we'll turn off threading for VAX and m68k. PowerPC has some other issue, and i386 and SPARC appear to work fine with threading.
Diffstat (limited to 'net/bind9')
-rw-r--r--net/bind9/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/bind9/Makefile b/net/bind9/Makefile
index 6c39ff2c24a..1d59d690ff5 100644
--- a/net/bind9/Makefile
+++ b/net/bind9/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.62 2004/10/03 09:20:41 tron Exp $
+# $NetBSD: Makefile,v 1.63 2004/12/18 21:01:46 jklos Exp $
DISTNAME= bind-${BIND_VERSION}
PKGNAME= bind-${BIND_VERSION}
@@ -70,7 +70,9 @@ post-install:
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
-.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
+.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none") || \
+ !empty(MACHINE_PLATFORM:MNetBSD-*-vax) || \
+ !empty(MACHINE_PLATFORM:MNetBSD-*-m68k)
CONFIGURE_ARGS+= --disable-threads
.else
CONFIGURE_ARGS+= --enable-threads