svn commit: r354466 - head/lang/x10

Carlo Strub cs at FreeBSD.org
Sun May 18 20:21:18 UTC 2014


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 at 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


More information about the svn-ports-all mailing list