From: Nikita Popov Date: Mon, 2 Sep 2019 07:36:20 +0000 (+0200) Subject: Fix pkg-config version constraint for ICU X-Git-Tag: php-7.4.0RC1~9^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a0980f1d92ed96c45c93a25a30bfa0919831f11;p=php Fix pkg-config version constraint for ICU On PHP 7.2 our minimum ICU version is 4.0, not 40. --- diff --git a/acinclude.m4 b/acinclude.m4 index 15340b48a9..3f3cbd3888 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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