From owner-svn-ports-head@freebsd.org Mon Sep 11 08:23:39 2017 Return-Path: Delivered-To: svn-ports-head@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 4AA97E227EA; Mon, 11 Sep 2017 08:23:39 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0F4557687C; Mon, 11 Sep 2017 08:23:38 +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 v8B8Nci0017559; Mon, 11 Sep 2017 08:23:38 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8B8NcQd017557; Mon, 11 Sep 2017 08:23:38 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201709110823.v8B8NcQd017557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 11 Sep 2017 08:23:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449614 - in head/devel: php70-intl php71-intl X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/devel: php70-intl php71-intl X-SVN-Commit-Revision: 449614 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.23 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: Mon, 11 Sep 2017 08:23:39 -0000 Author: jbeich Date: Mon Sep 11 08:23:37 2017 New Revision: 449614 URL: https://svnweb.freebsd.org/changeset/ports/449614 Log: devel/php7{0,1}-intl: switch to C++11, required by ICU >= 59 In file included from /wrkdirs/usr/ports/devel/php70-intl/work/php-7.0.19/ext/intl/intl_convertcpp.cpp:21: In file included from ./intl_convertcpp.h:26: /usr/local/include/unicode/unistr.h:3025:7: error: delegating constructors are permitted only in C++11 UnicodeString(ConstChar16Ptr(text)) {} ^~~~~~~~~~~~~ /usr/local/include/unicode/unistr.h:3087:7: error: delegating constructors are permitted only in C++11 UnicodeString(ConstChar16Ptr(text), length) {} ^~~~~~~~~~~~~ /usr/local/include/unicode/unistr.h:3180:7: error: delegating constructors are permitted only in C++11 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} ^~~~~~~~~~~~~ PR: 218788 Modified: head/devel/php70-intl/Makefile (contents, props changed) head/devel/php71-intl/Makefile (contents, props changed) Modified: head/devel/php70-intl/Makefile ============================================================================== --- head/devel/php70-intl/Makefile Mon Sep 11 08:23:25 2017 (r449613) +++ head/devel/php70-intl/Makefile Mon Sep 11 08:23:37 2017 (r449614) @@ -1,10 +1,14 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 PKGNAMESUFFIX= -intl + +USES= compiler:c++11-lib +USE_CXXSTD= gnu++11 .include "${MASTERDIR}/Makefile" Modified: head/devel/php71-intl/Makefile ============================================================================== --- head/devel/php71-intl/Makefile Mon Sep 11 08:23:25 2017 (r449613) +++ head/devel/php71-intl/Makefile Mon Sep 11 08:23:37 2017 (r449614) @@ -1,9 +1,13 @@ # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php71 PKGNAMESUFFIX= -intl + +USES= compiler:c++11-lib +USE_CXXSTD= gnu++11 .include "${MASTERDIR}/Makefile"