Date: Mon, 11 Sep 2017 08:22:52 +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: r449610 - head/devel/pecl-intl Message-ID: <201709110822.v8B8MqGZ017023@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Sep 11 08:22:51 2017 New Revision: 449610 URL: https://svnweb.freebsd.org/changeset/ports/449610 Log: devel/pecl-intl: switch to C++11, required by ICU >= 59 In file included from /wrkdirs/usr/ports/devel/pecl-intl/work/intl-3.0.0/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/pecl-intl/Makefile (contents, props changed) Modified: head/devel/pecl-intl/Makefile ============================================================================== --- head/devel/pecl-intl/Makefile Mon Sep 11 08:22:39 2017 (r449609) +++ head/devel/pecl-intl/Makefile Mon Sep 11 08:22:51 2017 (r449610) @@ -3,7 +3,7 @@ PORTNAME= intl PORTVERSION= 3.0.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel pear MAINTAINER= sunpoet@FreeBSD.org @@ -14,6 +14,7 @@ LICENSE= PHP301 LIB_DEPENDS= libicui18n.so:devel/icu IGNORE_WITH_PHP=70 71 -USES= php:pecl +USES= compiler:c++11-lib php:pecl +USE_CXXSTD= gnu++11 .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709110822.v8B8MqGZ017023>