# HG changeset patch # User Oron Peled # Date 1249333913 -7200 # Node ID e6a3b4ffe5766a3129a7674b8073a953b4c49f43 # Parent 5e3ec8c347d6b6fb1f96f0ac29b69be11d9a1d62 [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. diff -r 5e3ec8c347d6 -r e6a3b4ffe576 configure --- a/configure Tue Jun 23 22:52:14 2009 +0200 +++ b/configure Mon Aug 03 23:11:53 2009 +0200 @@ -47,7 +47,7 @@ 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