Skip to content

Commit 863aedd

Browse files
committed
Merge branch 'PHP-7.2'
* PHP-7.2: Group common flags
2 parents df2e4fd + e01f88d commit 863aedd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

ext/intl/config.m4

+6-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if test "$PHP_INTL" != "no"; then
99
PHP_SETUP_ICU(INTL_SHARED_LIBADD)
1010
PHP_SUBST(INTL_SHARED_LIBADD)
1111
PHP_REQUIRE_CXX()
12+
INTL_COMMON_FLAGS="$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1"
1213
if test "$icu_version" -ge "4002"; then
1314
icu_spoof_src=" spoofchecker/spoofchecker_class.c \
1415
spoofchecker/spoofchecker.c\
@@ -67,9 +68,9 @@ if test "$PHP_INTL" != "no"; then
6768
transliterator/transliterator_methods.c \
6869
uchar/uchar.c \
6970
idn/idn.c \
70-
$icu_spoof_src, $ext_shared,,$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1,cxx)
71+
$icu_spoof_src, $ext_shared,,$INTL_COMMON_FLAGS,cxx)
7172

72-
PHP_INTL_CPP_SOURCES="intl_convertcpp.cpp \
73+
PHP_INTL_CXX_SOURCES="intl_convertcpp.cpp \
7374
common/common_enum.cpp \
7475
common/common_date.cpp \
7576
dateformat/dateformat_format_object.cpp \
@@ -88,11 +89,11 @@ if test "$PHP_INTL" != "no"; then
8889
breakiterator/rulebasedbreakiterator_methods.cpp \
8990
breakiterator/codepointiterator_internal.cpp \
9091
breakiterator/codepointiterator_methods.cpp"
91-
PHP_INTL_CPP_FLAGS="$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 $ICU_CXXFLAGS"
92+
PHP_INTL_CXX_FLAGS="$INTL_COMMON_FLAGS $ICU_CXXFLAGS"
9293
if test "$ext_shared" = "no"; then
93-
PHP_ADD_SOURCES(PHP_EXT_DIR(intl), $PHP_INTL_CPP_SOURCES, $PHP_INTL_CPP_FLAGS)
94+
PHP_ADD_SOURCES(PHP_EXT_DIR(intl), $PHP_INTL_CXX_SOURCES, $PHP_INTL_CXX_FLAGS)
9495
else
95-
PHP_ADD_SOURCES_X(PHP_EXT_DIR(intl), $PHP_INTL_CPP_SOURCES, $PHP_INTL_CPP_FLAGS, shared_objects_intl, yes)
96+
PHP_ADD_SOURCES_X(PHP_EXT_DIR(intl), $PHP_INTL_CXX_SOURCES, $PHP_INTL_CXX_FLAGS, shared_objects_intl, yes)
9697
fi
9798

9899
PHP_ADD_BUILD_DIR($ext_builddir/collator)

0 commit comments

Comments
 (0)