From: Bryan Duxbury Date: Thu, 19 Aug 2010 21:02:19 +0000 (+0000) Subject: THRIFT-858. build: Have bootstrap.sh check for a suitable autoconf version before... X-Git-Tag: 0.5.0~162 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=5d742622e6b4bd46dd7d31d66011a546c99c79c1;p=common%2Fthrift.git THRIFT-858. build: Have bootstrap.sh check for a suitable autoconf version before running A slightly better version of the same functionality as contributed by David Reiss. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@987312 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/bootstrap.sh b/bootstrap.sh index 0b2b1bcd..74ecdb8d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -19,13 +19,6 @@ # under the License. # -have_ac_version=`autoconf --version | head -1 | cut -d' ' -f4` -desired_ac_version=2.65 -if [ `expr $have_ac_version \>= $desired_ac_version` -eq "0" ]; then - echo "Must have autoconf $desired_ac_version of higher." - exit 1 -fi - ./cleanup.sh autoscan || exit 1 diff --git a/configure.ac b/configure.ac index 02888fb0..e5c59c1c 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ # under the License. # -AC_PREREQ(2.59) +AC_PREREQ(2.65) AC_INIT([thrift], [0.5.0-dev])