autoconf 2.62 works well.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@908 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2010-01-12 22:27:02 +00:00
parent 814ff25d79
commit c879205c05
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2010-01-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
* bootstrap: autoconf 2.62 works well.
2010-01-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
Various fixes for Xmega devices.

View File

@ -1,6 +1,6 @@
#! /bin/sh
# autoconf-2.59 or 2.61 is known to work
# autoconf-2.59 or 2.61, 2.62 is known to work
: ${AUTOHEADER="autoheader${AC_VER}"}
: ${AUTOCONF="autoconf${AC_VER}"}
@ -14,9 +14,9 @@
AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
cut -d ' ' -f 4) 2>/dev/null`
if [ "$AUTOCONF_VER" != "2.59" -a "$AUTOCONF_VER" != "2.61" ]
if [ "$AUTOCONF_VER" != "2.59" -a "$AUTOCONF_VER" != "2.61" -a "$AUTOCONF_VER" != "2.62" ]
then
echo "Warning: This program is tested with autoconf version 2.59 and 2.61."
echo "Warning: This program is tested with autoconf version 2.59, 2.61 and 2.62."
echo "You are using `${AUTOCONF} --version | head -n 1`."
fi