summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorGustavo Lopes <glopes@nebm.ist.utl.pt>2012-08-25 19:00:34 +0200
committerGustavo Lopes <glopes@nebm.ist.utl.pt>2012-08-26 19:28:22 +0200
commit8831b000cab7103e25fc2acf224d0009ef0646d4 (patch)
treef201dc7ef540b25e83b71299ba0c37420cc5a7ab /acinclude.m4
parent48f40969179d3db8dade1e64a273a26b8aa2e2a1 (diff)
downloadphp-git-8831b000cab7103e25fc2acf224d0009ef0646d4.tar.gz
Require ICU >= 4.0 in configure
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index adb9599ce4..98e98f2af3 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2235,8 +2235,8 @@ AC_DEFUN([PHP_SETUP_ICU],[
icu_version=`expr [$]1 \* 1000 + [$]2`
AC_MSG_RESULT([found $icu_version_full])
- if test "$icu_version" -lt "3004"; then
- AC_MSG_ERROR([ICU version 3.4 or later is required])
+ if test "$icu_version" -lt "4000"; then
+ AC_MSG_ERROR([ICU version 4.0 or later is required])
fi
ICU_VERSION=$icu_version