@@ -9,6 +9,7 @@ if test "$PHP_INTL" != "no"; then
9
9
PHP_SETUP_ICU(INTL_SHARED_LIBADD)
10
10
PHP_SUBST(INTL_SHARED_LIBADD)
11
11
PHP_REQUIRE_CXX()
12
+ INTL_COMMON_FLAGS="$ICU_INCS -Wno-write-strings -D__STDC_LIMIT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1"
12
13
if test "$icu_version" -ge "4002"; then
13
14
icu_spoof_src=" spoofchecker/spoofchecker_class.c \
14
15
spoofchecker/spoofchecker.c\
@@ -67,9 +68,9 @@ if test "$PHP_INTL" != "no"; then
67
68
transliterator/transliterator_methods.c \
68
69
uchar/uchar.c \
69
70
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)
71
72
72
- PHP_INTL_CPP_SOURCES ="intl_convertcpp.cpp \
73
+ PHP_INTL_CXX_SOURCES ="intl_convertcpp.cpp \
73
74
common/common_enum.cpp \
74
75
common/common_date.cpp \
75
76
dateformat/dateformat_format_object.cpp \
@@ -88,11 +89,11 @@ if test "$PHP_INTL" != "no"; then
88
89
breakiterator/rulebasedbreakiterator_methods.cpp \
89
90
breakiterator/codepointiterator_internal.cpp \
90
91
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"
92
93
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 )
94
95
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)
96
97
fi
97
98
98
99
PHP_ADD_BUILD_DIR($ext_builddir/collator)
0 commit comments