Author: wrowe
Date: Fri Jun 20 08:01:47 2008
New Revision: 669928
URL: http://svn.apache.org/viewvc?rev=669928&view=rev
Log:
Autoconf 2.60's 2nd birthday this coming thursday. As this
is for maintainers, it's time to bump.
Backport: r669927
Modified:
apr/apr/branches/1.3.x/build/buildcheck.sh
apr/apr/branches/1.3.x/configure.in
Modified: apr/apr/branches/1.3.x/build/buildcheck.sh
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/build/buildcheck.sh?rev=669928&r1=669927&r2=669928&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/build/buildcheck.sh (original)
+++ apr/apr/branches/1.3.x/build/buildcheck.sh Fri Jun 20 08:01:47 2008
@@ -14,18 +14,18 @@
echo "buildconf: python version $py_version (ok)"
fi
-# autoconf 2.50 or newer
+# autoconf 2.60 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.50 or newer installed"
+echo " You need autoconf version 2.60 or newer installed"
echo " to build APR from SVN."
exit 1
fi
IFS=.; set $ac_version; IFS=' '
-if test "$1" = "2" -a "$2" -lt "50" || test "$1" -lt "2"; then
+if test "$1" = "2" -a "$2" -lt "60" || test "$1" -lt "2"; then
echo "buildconf: autoconf version $ac_version found."
-echo " You need autoconf version 2.50 or newer installed"
+echo " You need autoconf version 2.60 or newer installed"
echo " to build APR from SVN."
exit 1
else
Modified: apr/apr/branches/1.3.x/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/configure.in?rev=669928&r1=669927&r2=669928&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/configure.in (original)
+++ apr/apr/branches/1.3.x/configure.in Fri Jun 20 08:01:47 2008
@@ -139,9 +139,8 @@
AC_CHECK_TOOL(AR, ar, ar)
dnl Various OS checks that apparently set required flags
-AC_AIX
+AC_USE_SYSTEM_EXTENSIONS
AC_ISC_POSIX
-AC_MINIX
APR_EBCDIC
|