Fix pkg-config version constraint for ICU

On PHP 7.2 our minimum ICU version is 4.0, not 40.
This commit is contained in:
Nikita Popov 2019-09-02 09:36:20 +02:00
parent 8f564e5308
commit 5a0980f1d9

View File

@ -2207,7 +2207,7 @@ AC_DEFUN([PHP_SETUP_ICU],[
dnl If pkg-config is found try using it
if test "$PHP_ICU_DIR" = "DEFAULT" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists icu-uc icu-io icu-i18n; then
if $PKG_CONFIG --atleast-version=40 icu-uc; then
if $PKG_CONFIG --atleast-version=4.0 icu-uc; then
found_icu=yes
icu_version_full=`$PKG_CONFIG --modversion icu-uc`
ac_IFS=$IFS