diff options
author | hubertf <hubertf@pkgsrc.org> | 2006-11-23 22:19:38 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2006-11-23 22:19:38 +0000 |
commit | 201f5f484c49e68830a227d36c0895b288893e34 (patch) | |
tree | e183ac530e67794b4be939838fe6ae7fbf94e53b /net | |
parent | 1372068ead6c0ea7d0443cd731665da1c690aebb (diff) | |
download | pkgsrc-201f5f484c49e68830a227d36c0895b288893e34.tar.gz |
Disable threading on sparc and sparc64
sparc64 tested successfully by Volkmar Seifert <vs@nifelheim.info>
OK'd by (and sparc included per suggestion of) martin@
Diffstat (limited to 'net')
-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 4866f8f1e7a..0267ef14da6 100644 --- a/net/bind9/Makefile +++ b/net/bind9/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.83 2006/11/05 15:49:22 seb Exp $ +# $NetBSD: Makefile,v 1.84 2006/11/23 22:19:38 hubertf Exp $ DISTNAME= bind-${BIND_VERSION} -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= net MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${BIND_VERSION}/ @@ -74,6 +74,8 @@ post-install: .if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none") || \ !empty(MACHINE_PLATFORM:MNetBSD-*-vax) || \ + !empty(MACHINE_PLATFORM:MNetBSD-*-sparc) || \ + !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64) || \ !empty(MACHINE_PLATFORM:MNetBSD-*-m68k) CONFIGURE_ARGS+= --disable-threads .else |