From 5f52b1bde861e061f2078cd950230f02ba72e62d Mon Sep 17 00:00:00 2001 From: alexpeshkoff Date: Mon, 17 May 2010 10:39:32 +0000 Subject: [PATCH] Fixed CORE-2862: configure --with-fbudf breaks build on CentOS --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index a7a5f2a2a9..bfd84edfd9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,9 +25,9 @@ export ACLOCAL VER=`$AUTORECONF --version|grep '^[Aa]utoreconf'|sed 's/^[^0-9]*//'` case "$VER" in 0* | 1\.* | 2\.[0-9] | 2\.[0-9][a-z]* | \ - 2\.[1-4][0-9] | 2\.5[0-5][a-z]* ) + 2\.[1-5][0-9] | 2\.[1-5][0-9][a-z]* | 2\.6[0-2] | 2\.6[0-2][a-z]* ) echo - echo "**Error**: You must have autoconf 2.56 or later installed." + echo "**Error**: You must have autoconf 2.63 or later installed." echo "Download the appropriate package for your distribution/OS," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf/" DIE=1