summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-09-02 09:36:20 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-09-02 09:36:20 +0200
commit5a0980f1d92ed96c45c93a25a30bfa0919831f11 (patch)
tree0520ee15680726d58082543c41d7aa2f7f4a013a
parent8f564e5308970e3c1b96fd17e493c5c3a952954b (diff)
downloadphp-git-5a0980f1d92ed96c45c93a25a30bfa0919831f11.tar.gz
Fix pkg-config version constraint for ICU
On PHP 7.2 our minimum ICU version is 4.0, not 40.
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
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