[configure] Fix automake version check

The configure script fails on automake-1.11 (in Fedora-11) since
it looks for 3-digit version number.

"Yann E. MORIN", added the following comment:

The check for the automake version is not against a 3-digit number,
but really against a 3-part version number, a-la 'x.y.z'. Versions
such as 1.10 and 1.11 are also valid.
1.4
Oron Peled 14 years ago
parent 790b15a352
commit 803599b4bd

2
configure vendored

@ -47,7 +47,7 @@ awk
bison
flex
makeinfo
automake=\(GNU automake\) (1\.[[:digit:]]{2,}\.|[2-9][[:digit:]]*\.)
automake=\(GNU automake\) (1\.[[:digit:]]{2,}|[2-9][[:digit:]]*\.)
libtool=\(GNU libtool.*\) (2[[:digit:]]*\.|1\.6[[:digit:]]*\.|1\.5\.[2-9][[:digit:]]+)
curl || wget
patch

Loading…
Cancel
Save