Sat May 19 16:31:29 2012 UTC ()
lang/gprolog: Build failure is not jobs safe

gprolog fails to build on DragonFly-*-i386.
A fatal error (exception raised) occurs on fd2c.pl:215-220 on this
platform.  The build hangs after that (halts bulk build forever),
another job apparently never exits.

Setting the package to a single job fixes the problem, so apparently
a successful build is jobs safe, but not a build failure.


(marino)
diff -r1.13 -r1.14 pkgsrc/lang/gprolog/Makefile

cvs diff -r1.13 -r1.14 pkgsrc/lang/gprolog/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/gprolog/Makefile 2010/05/19 09:10:55 1.13
+++ pkgsrc/lang/gprolog/Makefile 2012/05/19 16:31:29 1.14
@@ -1,21 +1,23 @@ @@ -1,21 +1,23 @@
1# $NetBSD: Makefile,v 1.13 2010/05/19 09:10:55 asau Exp $ 1# $NetBSD: Makefile,v 1.14 2012/05/19 16:31:29 marino Exp $
2 2
3DISTNAME= gprolog-1.3.1 3DISTNAME= gprolog-1.3.1
4CATEGORIES= lang 4CATEGORIES= lang
5MASTER_SITES= ${HOMEPAGE} 5MASTER_SITES= ${HOMEPAGE}
6 6
7MAINTAINER= brook@nmsu.edu 7MAINTAINER= brook@nmsu.edu
8HOMEPAGE= http://www.gprolog.org/ 8HOMEPAGE= http://www.gprolog.org/
9COMMENT= GNU prolog compiler and interpreter 9COMMENT= GNU prolog compiler and interpreter
10 10
11PKG_DESTDIR_SUPPORT= user-destdir 11PKG_DESTDIR_SUPPORT= user-destdir
12 12
13GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
14CONFIGURE_DIRS= src 14CONFIGURE_DIRS= src
15CONFIGURE_ARGS+= --with-install-dir=${PREFIX}/lib/${PKGNAME_NOREV} \ 15CONFIGURE_ARGS+= --with-install-dir=${PREFIX}/lib/${PKGNAME_NOREV} \
16 --with-doc-dir=${PREFIX}/share/doc/gprolog \ 16 --with-doc-dir=${PREFIX}/share/doc/gprolog \
17 --with-html-dir=${PREFIX}/share/doc/gprolog/html \ 17 --with-html-dir=${PREFIX}/share/doc/gprolog/html \
18 --with-examples-dir=${PREFIX}/share/examples/gprolog \ 18 --with-examples-dir=${PREFIX}/share/examples/gprolog \
19 --with-c-flags=${CFLAGS:Q} 19 --with-c-flags=${CFLAGS:Q}
20 20
 21MAKE_JOBS_SAFE= no
 22
21.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"