Date: Fri, 26 Sep 2014 13:48:27 +0000 (UTC) From: Sean Bruno <sbruno@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369325 - in head/devel/boost-libs: . files Message-ID: <201409261348.s8QDmSGG078406@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sbruno Date: Fri Sep 26 13:48:27 2014 New Revision: 369325 URL: http://svnweb.freebsd.org/changeset/ports/369325 QAT: https://qat.redports.org/buildarchive/r369325/ Log: The boost-libs port fails on armv6 as it attempts to use the assembler directly when the files contain pre-processor directives. The attached patch passes these files through the compiler as is done in the base system. PR: 193836 Submitted by: andrew Approved by: bapt (mentor) Added: head/devel/boost-libs/files/patch-boost__libs__context__build__Jamfile.v2 (contents, props changed) Modified: head/devel/boost-libs/Makefile Modified: head/devel/boost-libs/Makefile ============================================================================== --- head/devel/boost-libs/Makefile Fri Sep 26 13:15:12 2014 (r369324) +++ head/devel/boost-libs/Makefile Fri Sep 26 13:48:27 2014 (r369325) @@ -4,7 +4,7 @@ PORTNAME= boost-libs COMMENT= Free portable C++ libraries (without Boost.Python) -PORTREVISION= 3 +PORTREVISION= 4 BUILD_DEPENDS+= bjam:${PORTSDIR}/devel/boost-jam Added: head/devel/boost-libs/files/patch-boost__libs__context__build__Jamfile.v2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/boost-libs/files/patch-boost__libs__context__build__Jamfile.v2 Fri Sep 26 13:48:27 2014 (r369325) @@ -0,0 +1,11 @@ +--- libs/context/build/Jamfile.v2.orig 2014-09-22 13:05:35.000000000 +0000 ++++ libs/context/build/Jamfile.v2 2014-09-22 13:05:45.000000000 +0000 +@@ -66,7 +66,7 @@ feature.set-default abi : [ default_abi + + actions gas + { +- as -o "$(<)" "$(>)" ++ ${CC} -c -o "$(<)" "$(>)" + } + + actions armasm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409261348.s8QDmSGG078406>