From owner-svn-ports-all@freebsd.org Mon Feb 8 18:52:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45D95AA2231; Mon, 8 Feb 2016 18:52:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 021F01138; Mon, 8 Feb 2016 18:52:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u18IqEu3095236; Mon, 8 Feb 2016 18:52:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u18IqE7x095229; Mon, 8 Feb 2016 18:52:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201602081852.u18IqE7x095229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 8 Feb 2016 18:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408498 - in head/lang: sdcc-devel sdcc-devel/files sdcc/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.20 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: Mon, 08 Feb 2016 18:52:16 -0000 Author: amdmi3 Date: Mon Feb 8 18:52:14 2016 New Revision: 408498 URL: https://svnweb.freebsd.org/changeset/ports/408498 Log: - Fix build with boost 1.60 - Mark sdcc-devel MAKE_JOBS_UNSAFE as it fails with parallel build PR: 199601 Approved by: portmgr blanket Added: head/lang/sdcc-devel/files/patch-src_SDCClospre.hpp (contents, props changed) head/lang/sdcc-devel/files/patch-src_SDCCnaddr.hpp (contents, props changed) head/lang/sdcc-devel/files/patch-src_SDCCralloc.hpp (contents, props changed) head/lang/sdcc/files/patch-src_SDCClospre.hpp (contents, props changed) head/lang/sdcc/files/patch-src_SDCCnaddr.hpp (contents, props changed) head/lang/sdcc/files/patch-src_SDCCralloc.hpp (contents, props changed) Modified: head/lang/sdcc-devel/Makefile Modified: head/lang/sdcc-devel/Makefile ============================================================================== --- head/lang/sdcc-devel/Makefile Mon Feb 8 18:48:52 2016 (r408497) +++ head/lang/sdcc-devel/Makefile Mon Feb 8 18:52:14 2016 (r408498) @@ -39,6 +39,7 @@ NOPRECIOUSMAKEVARS= yes PORTDATA= * PORTDOCS= * WRKSRC= ${WRKDIR}/sdcc +MAKE_JOBS_UNSAFE=yes OPTIONS_SUB= yes DEVLIB_CONFIGURE_OFF= --disable-device-lib Added: head/lang/sdcc-devel/files/patch-src_SDCClospre.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc-devel/files/patch-src_SDCClospre.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCClospre.hpp.orig 2014-01-03 17:18:45 UTC ++++ src/SDCClospre.hpp +@@ -19,6 +19,12 @@ + // + // Lifetime-optimal speculative partial redundancy elimination. + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + #include + #include Added: head/lang/sdcc-devel/files/patch-src_SDCCnaddr.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc-devel/files/patch-src_SDCCnaddr.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCCnaddr.hpp.orig 2015-04-01 13:50:35 UTC ++++ src/SDCCnaddr.hpp +@@ -37,6 +37,12 @@ + #include + #include + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + + #include "SDCCtree_dec.hpp" Added: head/lang/sdcc-devel/files/patch-src_SDCCralloc.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc-devel/files/patch-src_SDCCralloc.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCCralloc.hpp.orig 2015-02-25 10:25:50 UTC ++++ src/SDCCralloc.hpp +@@ -51,6 +51,12 @@ + #include + #include + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + #include + #include Added: head/lang/sdcc/files/patch-src_SDCClospre.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc/files/patch-src_SDCClospre.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCClospre.hpp.orig 2014-01-03 17:18:45 UTC ++++ src/SDCClospre.hpp +@@ -19,6 +19,12 @@ + // + // Lifetime-optimal speculative partial redundancy elimination. + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + #include + #include Added: head/lang/sdcc/files/patch-src_SDCCnaddr.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc/files/patch-src_SDCCnaddr.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCCnaddr.hpp.orig 2015-04-01 13:50:35 UTC ++++ src/SDCCnaddr.hpp +@@ -37,6 +37,12 @@ + #include + #include + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + + #include "SDCCtree_dec.hpp" Added: head/lang/sdcc/files/patch-src_SDCCralloc.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/sdcc/files/patch-src_SDCCralloc.hpp Mon Feb 8 18:52:14 2016 (r408498) @@ -0,0 +1,15 @@ +--- src/SDCCralloc.hpp.orig 2015-02-25 10:25:50 UTC ++++ src/SDCCralloc.hpp +@@ -51,6 +51,12 @@ + #include + #include + ++// Workaround for boost bug #11880 ++#include ++#if BOOST_VERSION == 106000 ++ #include ++#endif ++ + #include + #include + #include