From: twisti Date: Tue, 1 Aug 2006 20:38:10 +0000 (+0000) Subject: * autogen.sh: Recognize autoconf 2.60. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=f069f19644557feea7afb4c4892762b6b8cce7cb;hp=dfa9f5e40f56b309e9b240621e4e5ab9111aace7;p=cacao.git * autogen.sh: Recognize autoconf 2.60. --- diff --git a/autogen.sh b/autogen.sh index 9fd46bd46..21e7bc517 100755 --- a/autogen.sh +++ b/autogen.sh @@ -57,7 +57,7 @@ for CACAO_AUTOHEADER in autoheader autoheader259; do CACAO_AUTOHEADER_VERSION=`${CACAO_AUTOHEADER} --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'` # echo ${CACAO_AUTOHEADER_VERSION} case ${CACAO_AUTOHEADER_VERSION} in - 2.59* ) + 2.59* | 2.6* ) CACAO_HAVE_AUTOHEADER=true break; ;; @@ -67,7 +67,7 @@ done if test ${CACAO_HAVE_AUTOHEADER} = false; then echo "No proper autoheader was found." - echo "You must have autoconf 2.59 installed." + echo "You must have autoconf 2.59 or later installed." exit 1 fi @@ -105,7 +105,7 @@ for CACAO_AUTOCONF in autoconf autoconf259; do CACAO_AUTOCONF_VERSION=`${CACAO_AUTOCONF} --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'` # echo ${CACAO_AUTOCONF_VERSION} case ${CACAO_AUTOCONF_VERSION} in - 2.59* ) + 2.59* | 2.6* ) CACAO_HAVE_AUTOCONF=true break; ;; @@ -115,7 +115,7 @@ done if test ${CACAO_HAVE_AUTOCONF} = false; then echo "No proper autoconf was found." - echo "You must have autoconf 2.59 installed." + echo "You must have autoconf 2.59 or later installed." exit 1 fi