Date: Mon, 11 Sep 2017 08:23:38 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> 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 Message-ID: <201709110823.v8B8NcQd017557@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <ale@FreeBSD.org> # $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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709110823.v8B8NcQd017557>