diff options
author | Anatol Belski <ab@php.net> | 2018-04-05 14:22:38 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-04-05 14:22:38 +0200 |
commit | 50c8d3e0e7b1bd3440513b874b04182b4702679e (patch) | |
tree | 299e0f8c8d62dbf2b697fee2286d2072b2b15cd7 | |
parent | 13a2f2d041999dca0066542f2a552798fab9a13d (diff) | |
download | php-git-50c8d3e0e7b1bd3440513b874b04182b4702679e.tar.gz |
Fix comparison
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 89910930bd..be0f9f23f2 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2239,7 +2239,7 @@ AC_DEFUN([PHP_SETUP_ICU],[ PHP_EVAL_LIBLINE($ICU_LIBS, $1) ICU_EXTRA_FLAGS=`$ICU_CONFIG --cxxflags` - if test "$icu_version" -lt "49000"; then + if test "$icu_version" -ge "49000"; then ICU_EXTRA_FLAGS="$ICU_EXTRA_FLAGS -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit" fi fi |