applied patch from Sesse <sgunderson@bigfoot.com> that fixes the check for

2000-06-24  Sven Neumann  <sven@gimp.org>

        * autogen.sh: applied patch from Sesse <sgunderson@bigfoot.com>
        that fixes the check for recent versions of auto[conf|make].
This commit is contained in:
Sven Neumann 2000-06-24 00:32:27 +00:00 committed by Sven Neumann
parent 2d02efd661
commit c887a86e48
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-06-24 Sven Neumann <sven@gimp.org>
* autogen.sh: applied patch from Sesse <sgunderson@bigfoot.com>
that fixes the check for recent versions of auto[conf|make].
2000-06-23 Sven Neumann <sven@gimp.org>
* Makefile.am

View File

@ -34,7 +34,7 @@ echo "see the file HACKING for more information..."
echo
echo "Testing autoconf... "
VER=`autoconf --version | sed "s/.* \([0-9.]*\)$/\1/"`
VER=`autoconf --version | sed "s/.* \([0-9.]*\)[a-z]\?$/\1/"`
if expr $VER \>= 2.13 >/dev/null; then
echo "looks OK."
else
@ -43,7 +43,7 @@ else
fi
echo "Testing automake... "
VER=`automake --version | grep automake | sed "s/.* \([0-9.]*\)$/\1/"`
VER=`automake --version | grep automake | sed "s/.* \([0-9.]*\)[a-z]\?$/\1/"`
if expr $VER \>= 1.4 >/dev/null; then
echo "looks OK."
else
@ -52,7 +52,7 @@ else
fi
echo "Testing gettextize... "
VER=`gettextize --version | grep gettext | sed "s/.* \([0-9.]*\)$/\1/;s/0.//"`
VER=`gettextize --version | grep gettext | sed "s/.* \([0-9.]*\)[a-z]\?$/\1/;s/0.//"`
if expr $VER \>= 10.35 >/dev/null; then
echo "looks OK."
else