Patch for 10.0-RELEASE and later build failures. Fixes a problem in bundled Boehm GC configure script, which mistakes FreeBSD 1* for FreeBSD 1.* and disables dynamic libraries. Fix: Attached. Patch attached with submission follows: How-To-Repeat: Try to build lang/x10 on FreeBSD 10 or 11.
Responsible Changed From-To: freebsd-ports-bugs->cs I'll take it.
Author: cs Date: Sun May 18 20:21:18 2014 New Revision: 354466 URL: http://svnweb.freebsd.org/changeset/ports/354466 QAT: https://qat.redports.org/buildarchive/r354466/ Log: Patch for 10.0-RELEASE and later build failures. Fixes a problem in bundled Boehm GC configure script, which mistakes FreeBSD 1* for FreeBSD 1.* and disables dynamic libraries. PR: ports/189004 Submitted by: Jason Bacon <jwbacon@tds.net> (maintainer) MFH: 2014Q2 Modified: head/lang/x10/Makefile Modified: head/lang/x10/Makefile ============================================================================== --- head/lang/x10/Makefile Sun May 18 20:07:43 2014 (r354465) +++ head/lang/x10/Makefile Sun May 18 20:21:18 2014 (r354466) @@ -56,6 +56,7 @@ post-patch: ${CP} ${DISTDIR}/org.eclipse.equinox.common_3.6.0.v20100503.jar ${WRKSRC}/lib ${CP} ${DISTDIR}/commons-math-2.2.jar ${WRKSRC}/lib ${CP} ${DISTDIR}/bdwgc-7.1.tar.gz ${WRKDIR}/x10.runtime/src-cpp/bdwgc + (cd ${WRKDIR}/x10.runtime/src-cpp/bdwgc/src && tar zxvf ../bdwgc-7.1.tar.gz && ${REINPLACE_CMD} -e 's|freebsd1\*|freebsd1.*|g' configure) do-install: .for f in X10Launcher apgas precommit x10 x10c x10c++ x10j _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thank you very much.
Author: cs Date: Mon May 19 19:55:30 2014 New Revision: 354585 URL: http://svnweb.freebsd.org/changeset/ports/354585 QAT: https://qat.redports.org/buildarchive/r354585/ Log: MFH: r354466 Patch for 10.0-RELEASE and later build failures. Fixes a problem in bundled Boehm GC configure script, which mistakes FreeBSD 1* for FreeBSD 1.* and disables dynamic libraries. PR: ports/189004 Submitted by: Jason Bacon <jwbacon@tds.net> (maintainer) Approved by: portmgr Modified: branches/2014Q2/lang/x10/Makefile Directory Properties: branches/2014Q2/ (props changed) Modified: branches/2014Q2/lang/x10/Makefile ============================================================================== --- branches/2014Q2/lang/x10/Makefile Mon May 19 19:40:09 2014 (r354584) +++ branches/2014Q2/lang/x10/Makefile Mon May 19 19:55:30 2014 (r354585) @@ -56,6 +56,7 @@ post-patch: ${CP} ${DISTDIR}/org.eclipse.equinox.common_3.6.0.v20100503.jar ${WRKSRC}/lib ${CP} ${DISTDIR}/commons-math-2.2.jar ${WRKSRC}/lib ${CP} ${DISTDIR}/bdwgc-7.1.tar.gz ${WRKDIR}/x10.runtime/src-cpp/bdwgc + (cd ${WRKDIR}/x10.runtime/src-cpp/bdwgc/src && tar zxvf ../bdwgc-7.1.tar.gz && ${REINPLACE_CMD} -e 's|freebsd1\*|freebsd1.*|g' configure) do-install: .for f in X10Launcher apgas precommit x10 x10c x10c++ x10j _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"