Index: bootstrap =================================================================== RCS file: /sources/avr-libc/avr-libc/bootstrap,v retrieving revision 1.4 diff -u -p -r1.4 bootstrap --- bootstrap 14 Jan 2007 15:19:36 -0000 1.4 +++ bootstrap 20 Nov 2007 22:30:44 -0000 @@ -5,9 +5,6 @@ # bootstrap script to build all the *.in files and configure script. # -# autoconf-2.59 or 2.60 is required -# FIXME: 2.60 is quickly added. Why was 2.59 exactly needed? What about 2.61? - : ${AUTOHEADER="autoheader${AC_VER}"} : ${AUTOCONF="autoconf${AC_VER}"} @@ -20,9 +17,11 @@ 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.60" ] +if [ "$AUTOCONF_VER" != "2.59" \ + -a "$AUTOCONF_VER" != "2.60" \ + -a "$AUTOCONF_VER" != "2.61" ] then - echo "You need to use autoconf version 2.59 or 2.60." + echo "You need to use autoconf version 2.59, 2.60, or 2.61." echo "You are using `${AUTOCONF} --version | head -n 1`." exit 1 fi