Index: configure.ac =================================================================== RCS file: /cvsroot/classpath/classpath/configure.ac,v retrieving revision 1.45 diff -u -r1.45 configure.ac --- configure.ac 14 Aug 2004 18:21:35 -0000 1.45 +++ configure.ac 29 Aug 2004 15:09:34 -0000 @@ -25,7 +25,7 @@ AC_SUBST(CLASSPATH_MODULE) AC_PREREQ(2.59) -AM_INIT_AUTOMAKE(1.7.0) +AM_INIT_AUTOMAKE([1.9.0 gnu std-options tar-ustar]) AC_CONFIG_HEADERS([include/config.h]) AC_PREFIX_DEFAULT(/usr/local/classpath) Index: INSTALL =================================================================== RCS file: /cvsroot/classpath/classpath/INSTALL,v retrieving revision 1.21 diff -u -r1.21 INSTALL --- INSTALL 25 Jul 2004 20:58:25 -0000 1.21 +++ INSTALL 29 Aug 2004 15:09:34 -0000 @@ -20,8 +20,8 @@ aclocal.m4, or config.h.in. - GNU autoconf 2.59+ - - GNU automake 1.7+ - - GNU libtool 1.4.2+ + - GNU automake 1.9+ + - GNU libtool 1.5+ When working from CVS you can run the above tools by executing ./autogen.sh in the source directory. Index: autogen.sh =================================================================== RCS file: /cvsroot/classpath/classpath/autogen.sh,v retrieving revision 1.6 diff -u -r1.6 autogen.sh --- autogen.sh 18 Aug 2004 06:42:41 -0000 1.6 +++ autogen.sh 29 Aug 2004 15:09:34 -0000 @@ -4,7 +4,7 @@ LIBTOOLIZE=libtoolize ${LIBTOOLIZE} --version | head -n 1 -echo "libtoolize: minimum version required: 1.4.2" +echo "libtoolize: minimum version required: 1.5" AUTOCONF=autoconf ${AUTOCONF} --version | head -n 1 @@ -16,23 +16,19 @@ echo "autoheader: minimum version required: 2.59" AUTOMAKE=automake -if test -x /usr/bin/automake-1.8; then - AUTOMAKE=/usr/bin/automake-1.8 -elif test -x /usr/bin/automake-1.7; then - AUTOMAKE=/usr/bin/automake-1.7 +if test -x /usr/bin/automake-1.9; then + AUTOMAKE=/usr/bin/automake-1.9 fi ${AUTOMAKE} --version | head -n 1 -echo "automake: minimum version required: 1.7.0" +echo "automake: minimum version required: 1.9.0" # Aclocal is part of automake ACLOCAL=aclocal -if test -x /usr/bin/aclocal-1.8; then - ACLOCAL=/usr/bin/aclocal-1.8 -elif test -x /usr/bin/aclocal-1.7; then - ACLOCAL=/usr/bin/aclocal-1.7 +if test -x /usr/bin/aclocal-1.9; then + ACLOCAL=/usr/bin/aclocal-1.9 fi ${ACLOCAL} --version | head -n 1 -echo "aclocal: minimum version required: 1.7.0" +echo "aclocal: minimum version required: 1.9.0" echo "libtoolize ..." ${LIBTOOLIZE} --force --copy