From e4d8f00e24daa1796ad16dfa7703aee44f6b4a7f Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 30 Oct 2012 17:00:50 -0700 Subject: [PATCH] Don't complain about autoconf version. --- autogen.sh | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) diff --git a/autogen.sh b/autogen.sh index d16c7b5..89d8deb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -28,53 +28,6 @@ aclocal_vers=1.4 program=`basename $0` -if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then - if (autoconf --version | awk 'NR==1 { if( $3 >= '$autoconf_vers') \ - exit 1; exit 0; }'); - then - echo "$program: ERROR: \`autoconf' is too old." - echo " (version $autoconf_vers or newer is required)" - DIE="yes" - fi -else - echo - echo "$program: ERROR: You must have \`autoconf' installed to compile $PACKAGE." - echo " (version $autoconf_vers or newer is required)" - DIE="yes" -fi - -# Ensure that these are created by the versions on this system -# (indirectly via automake) -rm -f libtool ltmain.sh -if (automake --version) < /dev/null > /dev/null 2>&1 ; then - if (automake --version | awk 'NR==1 { if( $4 >= '$automake_vers') \ - exit 1; exit 0; }'); - then - echo "$program: ERROR: \`automake' is too old." - echo " (version $automake_vers or newer is required)" - DIE="yes" - fi - if (aclocal --version) < /dev/null > /dev/null 2>&1; then - if (aclocal --version | awk 'NR==1 { if( $4 >= '$aclocal_vers' ) \ - exit 1; exit 0; }' ); - then - echo "$program: ERROR: \`aclocal' is too old." - echo " (version $aclocal_vers or newer is required)" - DIE="yes" - fi - else - echo - echo "$program: ERROR: Missing \`aclocal'" - echo " The version of automake installed doesn't appear recent enough." - DIE="yes" - fi -else - echo - echo "$program: ERROR: You must have \`automake' installed to compile $PACKAGE." - echo " (version $automake_vers or newer is required)" - DIE="yes" -fi - if test "X$DIE" != X; then exit 1