From 8831b000cab7103e25fc2acf224d0009ef0646d4 Mon Sep 17 00:00:00 2001 From: Gustavo Lopes Date: Sat, 25 Aug 2012 19:00:34 +0200 Subject: [PATCH] Require ICU >= 4.0 in configure --- acinclude.m4 | 4 ++-- 1 file 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 -- 2.50.0