summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2005-01-13 11:17:38 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2005-01-13 11:17:38 +0000
commitbbafa80a16ffa413bf1888fd7dbf1cd469b361a1 (patch)
tree51b08b335d56210d029d4edb348cb06fd21d15a8
parenta6976ef303b62c9760c767bef2d7257bc6c78d88 (diff)
downloadlibapr-bbafa80a16ffa413bf1888fd7dbf1cd469b361a1.tar.gz
* build/buildcheck.sh: Require autoconf 2.50 or later.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@125063 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xbuild/buildcheck.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh
index cd1d593aa..10a68d128 100755
--- a/build/buildcheck.sh
+++ b/build/buildcheck.sh
@@ -14,18 +14,18 @@ py_version=`python -c 'import sys; print sys.version' 2>&1|sed 's/ .*//;q'`
echo "buildconf: python version $py_version (ok)"
fi
-# autoconf 2.13 or newer
+# autoconf 2.50 or newer
ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|sed -e 's/^[^0-9]*//;s/[a-z]* *$//;q'`
if test -z "$ac_version"; then
echo "buildconf: autoconf not found."
-echo " You need autoconf version 2.13 or newer installed"
+echo " You need autoconf version 2.50 or newer installed"
echo " to build Apache from CVS."
exit 1
fi
IFS=.; set $ac_version; IFS=' '
-if test "$1" = "2" -a "$2" -lt "13" || test "$1" -lt "2"; then
+if test "$1" = "2" -a "$2" -lt "50" || test "$1" -lt "2"; then
echo "buildconf: autoconf version $ac_version found."
-echo " You need autoconf version 2.13 or newer installed"
+echo " You need autoconf version 2.50 or newer installed"
echo " to build Apache from CVS."
exit 1
else