From: Anatol Belski Date: Tue, 3 Apr 2018 08:42:14 +0000 (+0200) Subject: Fix shared ext/intl compilation X-Git-Tag: php-7.1.17RC1~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bd299f7318492fd7e5cafffa562d76ba60e69d4;p=php Fix shared ext/intl compilation --- diff --git a/ext/intl/config.m4 b/ext/intl/config.m4 index aea57102f6..959ecd2b26 100644 --- a/ext/intl/config.m4 +++ b/ext/intl/config.m4 @@ -69,7 +69,7 @@ if test "$PHP_INTL" != "no"; then idn/idn.c \ $icu_spoof_src, $ext_shared,,$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1,cxx) - PHP_ADD_SOURCES(PHP_EXT_DIR(intl), intl_convertcpp.cpp \ + PHP_INTL_CPP_SOURCES="intl_convertcpp.cpp \ common/common_enum.cpp \ common/common_date.cpp \ dateformat/dateformat_format_object.cpp \ @@ -87,8 +87,13 @@ if test "$PHP_INTL" != "no"; then breakiterator/breakiterator_methods.cpp \ breakiterator/rulebasedbreakiterator_methods.cpp \ breakiterator/codepointiterator_internal.cpp \ - breakiterator/codepointiterator_methods.cpp, \ - $ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 $ICU_EXTRA_FLAGS) + breakiterator/codepointiterator_methods.cpp" + PHP_INTL_CPP_FLAGS="$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 $ICU_EXTRA_FLAGS" + if test "$ext_shared" = "no"; then + PHP_ADD_SOURCES(PHP_EXT_DIR(intl), $PHP_INTL_CPP_SOURCES, $PHP_INTL_CPP_FLAGS) + else + PHP_ADD_SOURCES_X(PHP_EXT_DIR(intl), $PHP_INTL_CPP_SOURCES, $PHP_INTL_CPP_FLAGS, shared_objects_intl, yes) + fi PHP_ADD_BUILD_DIR($ext_builddir/collator) PHP_ADD_BUILD_DIR($ext_builddir/converter)