Commit: 8831b000cab7103e25fc2acf224d0009ef0646d4 Author: Gustavo Lopes <[email protected]> Sat, 25 Aug 2012 19:00:34 +0200 Parents: 48f40969179d3db8dade1e64a273a26b8aa2e2a1 Branches: master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=8831b000cab7103e25fc2acf224d0009ef0646d4 Log: Require ICU >= 4.0 in configure Changed paths: M acinclude.m4 Diff: diff --git a/acinclude.m4 b/acinclude.m4 index adb9599..98e98f2 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 -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
