Update to check for minimum icu version

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39403 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2016-02-20 17:30:11 +00:00
parent 05838a0860
commit a01485a16a
2 changed files with 4 additions and 4 deletions

6
configure vendored
View file

@ -12117,9 +12117,9 @@ fi
echo "See http://site.icu-project.org/ for help."
else
ICU_VERSION=`$ICU_CONFIG --version`
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ICU >= 4.0" >&5
$as_echo_n "checking for ICU >= 4.0... " >&6; }
found=`expr $ICU_VERSION \>= 4.0`
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ICU >= 4.8" >&5
$as_echo_n "checking for ICU >= 4.8... " >&6; }
found=`expr $ICU_VERSION \>= 4.8`
if test "$found" = "1" ; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }

View file

@ -3317,7 +3317,7 @@ AC_ARG_WITH(icu-library,
if test $enable_icu = yes; then
if test "$enable_icu_config" = "yes"; then
AC_CHECK_ICU(4.0, have_icu=yes, have_icu=no)
AC_CHECK_ICU(4.8, have_icu=yes, have_icu=no)
else
have_icu=no;
AC_CHECKING([for libicu (icu-config disabled)])