summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjklos <jklos>2004-12-18 21:01:46 +0000
committerjklos <jklos>2004-12-18 21:01:46 +0000
commit9102d386b6d00bad5a7cca8c1eaaad83cb54e656 (patch)
tree24ff0f62d248158b4bf95f7f867a0508ba759d85 /net
parent66aea5733885e6d059d2659e2855e9c3aca5b906 (diff)
downloadpkgsrc-9102d386b6d00bad5a7cca8c1eaaad83cb54e656.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')
-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