diff options
author | joerg <joerg> | 2016-12-15 23:47:49 +0000 |
---|---|---|
committer | joerg <joerg> | 2016-12-15 23:47:49 +0000 |
commit | 855df29d7090be63e83b2357e3d6e0b553feed73 (patch) | |
tree | cf7ed14c4a799f50077fdc3fb0c8275066841a29 | |
parent | f6f057c392907c87d028e60939603becbe2b1e22 (diff) | |
download | pkgsrc-855df29d7090be63e83b2357e3d6e0b553feed73.tar.gz |
Disable jobs to workaround WAF thread creation problems.
-rw-r--r-- | databases/tdb/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/databases/tdb/Makefile b/databases/tdb/Makefile index 9eaca8db1ad..396c16a66ec 100644 --- a/databases/tdb/Makefile +++ b/databases/tdb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2016/07/09 13:03:36 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2016/12/15 23:47:49 joerg Exp $ DISTNAME= tdb-1.3.8 CATEGORIES= databases @@ -30,6 +30,9 @@ USE_GCC_RUNTIME= yes .include "../../mk/bsd.prefs.mk" +# At least on NetBSD unprivileged build fails to create threads in WAF. +ALL_ENV+= JOBS=1 + .if ${OPSYS} == "Darwin" post-build: @install_name_tool -id ${PREFIX}/lib/libtdb.dylib \ |