GNOME Bugzilla – Bug 348579
autogen.sh erroneously disallows the use of autoconf 2.6.x
Last modified: 2007-11-22 20:30:29 UTC
autogen.sh incorrectly disallows the use of autoconf 2.6.0 It builds just fine with 2.6.0. 2.6.0 is the only autoconf available in Debian Unstable.
The offending lines in autogen.sh are: if autoconf --version < /dev/null > /dev/null 2>&1 ; then autoconf_version=`autoconf --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'` case $autoconf_version in 2.5*) have_autoconf=true ;; esac fi That comparison prevents libglade from working with autoconf 2.6+ (the one available in debian unstable is 2.60a). If the comparison is removed, the compilation goes without problems.
Confirming.
This bug is already fixed: http://svn.gnome.org/viewvc/libglade/trunk/autogen.sh?r1=495&r2=527 but maybe the good fix would be to really check for version >= 2.5
libglade now uses gnome-autogen which doesn't have this bug; closing.