From owner-svn-ports-all@freebsd.org Wed Apr 4 08:21:01 2018 Return-Path: Delivered-To: svn-ports-all@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 E81A1F9D010; Wed, 4 Apr 2018 08:21:00 +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 985066B19B; Wed, 4 Apr 2018 08:21:00 +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 92F421122E; Wed, 4 Apr 2018 08:21:00 +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 w348L0pc012321; Wed, 4 Apr 2018 08:21:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w348L0xQ012310; Wed, 4 Apr 2018 08:21:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804040821.w348L0xQ012310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 4 Apr 2018 08:21:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466398 - in head/devel: pecl-intl php70-intl php71-intl php72-intl X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/devel: pecl-intl php70-intl php71-intl php72-intl X-SVN-Commit-Revision: 466398 X-SVN-Commit-Repository: ports 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.25 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: Wed, 04 Apr 2018 08:21:01 -0000 Author: jbeich Date: Wed Apr 4 08:20:59 2018 New Revision: 466398 URL: https://svnweb.freebsd.org/changeset/ports/466398 Log: devel/php*-intl: unbreak with ICU 61 In file included from ext/intl/intl_convertcpp.cpp:21: ./intl_convertcpp.h:29:25: error: unknown type name 'UnicodeString' int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status); ^ ./intl_convertcpp.h:31:40: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status); ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ ext/intl/intl_convertcpp.cpp:28:25: error: unknown type name 'UnicodeString' int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status) ^ ext/intl/intl_convertcpp.cpp:59:40: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status) ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ https://ssl.icu-project.org/trac/changeset/40705 PR: 227042 Reported by: antoine (via exp-run) Modified: head/devel/pecl-intl/Makefile (contents, props changed) head/devel/php70-intl/Makefile (contents, props changed) head/devel/php71-intl/Makefile (contents, props changed) head/devel/php72-intl/Makefile (contents, props changed) Modified: head/devel/pecl-intl/Makefile ============================================================================== --- head/devel/pecl-intl/Makefile Wed Apr 4 08:03:58 2018 (r466397) +++ head/devel/pecl-intl/Makefile Wed Apr 4 08:20:59 2018 (r466398) @@ -17,4 +17,6 @@ IGNORE_WITH_PHP=70 71 72 USES= compiler:c++11-lib php:pecl USE_CXXSTD= gnu++11 +CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1 + .include Modified: head/devel/php70-intl/Makefile ============================================================================== --- head/devel/php70-intl/Makefile Wed Apr 4 08:03:58 2018 (r466397) +++ head/devel/php70-intl/Makefile Wed Apr 4 08:20:59 2018 (r466398) @@ -10,4 +10,6 @@ PKGNAMESUFFIX= -intl USES= compiler:c++11-lib USE_CXXSTD= gnu++11 +CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1 + .include "${MASTERDIR}/Makefile" Modified: head/devel/php71-intl/Makefile ============================================================================== --- head/devel/php71-intl/Makefile Wed Apr 4 08:03:58 2018 (r466397) +++ head/devel/php71-intl/Makefile Wed Apr 4 08:20:59 2018 (r466398) @@ -9,4 +9,6 @@ PKGNAMESUFFIX= -intl USES= compiler:c++11-lib USE_CXXSTD= gnu++11 +CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1 + .include "${MASTERDIR}/Makefile" Modified: head/devel/php72-intl/Makefile ============================================================================== --- head/devel/php72-intl/Makefile Wed Apr 4 08:03:58 2018 (r466397) +++ head/devel/php72-intl/Makefile Wed Apr 4 08:20:59 2018 (r466398) @@ -9,4 +9,6 @@ PKGNAMESUFFIX= -intl USES= compiler:c++11-lib USE_CXXSTD= gnu++11 +CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1 + .include "${MASTERDIR}/Makefile"