diff options
author | jklos <jklos@pkgsrc.org> | 2004-12-18 21:01:46 +0000 |
---|---|---|
committer | jklos <jklos@pkgsrc.org> | 2004-12-18 21:01:46 +0000 |
commit | 957de1a8e67cb13500ee71dc9a57066e9caa2eb4 (patch) | |
tree | 24ff0f62d248158b4bf95f7f867a0508ba759d85 /net/bind9 | |
parent | c06a6dd151c7604b3331dec0d568aee9f2bc3874 (diff) | |
download | pkgsrc-957de1a8e67cb13500ee71dc9a57066e9caa2eb4.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/Makefile | 6 |
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 |