Better check for automake, check for either curl or wget:
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Dec 16 18:03:28 2008 +0000 (2008-12-16)
changeset 11005f53834583c6
parent 1099 e1a5096d432b
child 1101 29ebc048d33f
Better check for automake, check for either curl or wget:
- automake must be at least 1.10 to correctly setup MPFR
- either one of curl or wget is needed to retrieve the tarballs

/trunk/configure | 7 4 3 0 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
configure
     1.1 --- a/configure	Mon Dec 15 18:09:22 2008 +0000
     1.2 +++ b/configure	Tue Dec 16 18:03:28 2008 +0000
     1.3 @@ -41,8 +41,9 @@
     1.4  bison/
     1.5  flex/
     1.6  makeinfo/
     1.7 -automake/
     1.8 +automake/\(GNU automake\) [[:digit:]]+\.[[:digit:]]{2,}
     1.9  libtool/
    1.10 +curl/|wget/
    1.11  patch/
    1.12  tar/
    1.13  gzip/
    1.14 @@ -253,11 +254,11 @@
    1.15  # If we can't get the revision number, use date
    1.16  printf "Computing version string... "
    1.17  case "${VERSION}" in
    1.18 -  *+svn)
    1.19 +  *+svn|svn)
    1.20      REVISION=$(LC_ALL=C svnversion)
    1.21      case "${REVISION}" in
    1.22        exported)
    1.23 -        VERSION="${VERSION}unknown@$(date +%Y%m%d.%H%M%S)";;
    1.24 +        VERSION="${VERSION}_unknown@$(date +%Y%m%d.%H%M%S)";;
    1.25        *)
    1.26          URL=$(LC_ALL=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
    1.27          ROOT=$(LC_ALL=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)