pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/bind9 BIND 9.3.0 dies right after launch on VAX an...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5f538f37ce12
branches:  trunk
changeset: 485692:5f538f37ce12
user:      jklos <jklos%pkgsrc.org@localhost>
date:      Sat Dec 18 21:01:46 2004 +0000

description:
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:

 net/bind9/Makefile |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r c72c013cfed3 -r 5f538f37ce12 net/bind9/Makefile
--- a/net/bind9/Makefile        Sat Dec 18 20:58:30 2004 +0000
+++ b/net/bind9/Makefile        Sat Dec 18 21:01:46 2004 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index