From owner-svn-ports-all@FreeBSD.ORG Fri Sep 26 13:48:28 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DE8DD3E; Fri, 26 Sep 2014 13:48:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68656D5A; Fri, 26 Sep 2014 13:48:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QDmS0E078408; Fri, 26 Sep 2014 13:48:28 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8QDmSGG078406; Fri, 26 Sep 2014 13:48:28 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201409261348.s8QDmSGG078406@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Fri, 26 Sep 2014 13:48:27 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 13:48:28 -0000 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