Use automake 1.9

svn path=/trunk/; revision=5814
This commit is contained in:
Matthias Clasen 2007-11-08 02:54:39 +00:00
parent 1af98f9196
commit 5c971cb504
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,6 @@
2007-11-07 Matthias Clasen <mclasen@redhat.com>
* autogen.sh: Use automake 1.9
* acinclude.m4:
* configure.in: Move some inter-*.m4 includes from

View File

@ -45,12 +45,12 @@ fi
DIE=1
}
if automake-1.7 --version < /dev/null > /dev/null 2>&1 ; then
AUTOMAKE=automake-1.7
ACLOCAL=aclocal-1.7
if automake-1.9 --version < /dev/null > /dev/null 2>&1 ; then
AUTOMAKE=automake-1.9
ACLOCAL=aclocal-1.9
else
echo
echo "You must have automake 1.7.x installed to compile $PROJECT."
echo "You must have automake 1.9.x installed to compile $PROJECT."
echo "Install the appropriate package for your distribution,"
echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
DIE=1