From owner-svn-ports-head@freebsd.org Sat Sep 8 00:53:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 526E0FCEF1E; Sat, 8 Sep 2018 00:53:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 05B157E550; Sat, 8 Sep 2018 00:53:11 +0000 (UTC) (envelope-from jbeich@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0016F237B9; Sat, 8 Sep 2018 00:53:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w880rAPU081872; Sat, 8 Sep 2018 00:53:10 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w880rArT081869; Sat, 8 Sep 2018 00:53:10 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201809080053.w880rArT081869@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 8 Sep 2018 00:53:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479222 - in head/devel: boost-all boost-libs boost-python-libs X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/devel: boost-all boost-libs boost-python-libs X-SVN-Commit-Revision: 479222 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Sep 2018 00:53:11 -0000 Author: jbeich Date: Sat Sep 8 00:53:10 2018 New Revision: 479222 URL: https://svnweb.freebsd.org/changeset/ports/479222 Log: devel/boost-all: switch to C++17 on FreeBSD >= 11.2 PR: 231077 Exp-run by: antoine Modified: head/devel/boost-all/compiled.mk head/devel/boost-libs/Makefile (contents, props changed) head/devel/boost-python-libs/Makefile (contents, props changed) Modified: head/devel/boost-all/compiled.mk ============================================================================== --- head/devel/boost-all/compiled.mk Sat Sep 8 00:15:09 2018 (r479221) +++ head/devel/boost-all/compiled.mk Sat Sep 8 00:53:10 2018 (r479222) @@ -4,8 +4,15 @@ MAKE_CMD= bjam MAKEFILE= # MAKE_FLAGS= # ALL_TARGET= stage +# XXX Drop conditional after 10.4 EOL as both libstdc++ 7 and libc++ 6 +# have near complete C++17 support. +.if exists(/usr/lib/libstdc++.so) || exists(/usr/include/c++/v1/__undef_macros) +USES+= compiler:c++17-lang +USE_CXXSTD= gnu++17 +.else USES+= compiler:c++14-lang USE_CXXSTD= gnu++14 +.endif PLIST_SUB+= BOOST_SHARED_LIB_VER=${PORTVERSION} Modified: head/devel/boost-libs/Makefile ============================================================================== --- head/devel/boost-libs/Makefile Sat Sep 8 00:15:09 2018 (r479221) +++ head/devel/boost-libs/Makefile Sat Sep 8 00:53:10 2018 (r479222) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boost-libs -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Free portable C++ libraries (without Boost.Python) Modified: head/devel/boost-python-libs/Makefile ============================================================================== --- head/devel/boost-python-libs/Makefile Sat Sep 8 00:15:09 2018 (r479221) +++ head/devel/boost-python-libs/Makefile Sat Sep 8 00:53:10 2018 (r479222) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= boost-libs +PORTREVISION= 1 COMMENT= Framework for interfacing Python and C++ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}