Hello, I checked out source from RELEASE_0_45_BRANCH, ran autogen.sh and saw this:
... I am testing that you have the required versions of autoconf, automake, glib-gettextize and intltoolize. This test is not foolproof and if anything goes wrong, there may be guidance in the file HACKING.txt
checking for autoconf >= 2.52 ... ./autogen.sh: line 37: ((: ((2 == 2)) && ((61 >= 52)): missing `)' (error token is ">= 52))") Too old (found version 2.61)! checking for automake >= 1.7 ... ./autogen.sh: line 37: ((: ((1 == 1)) && ((10 >= 7)): missing `)' (error token is ">= 7))") Too old (found version 1.10)! ...
The test in check_version() where it fails is:
if (("$MAJOR1" > "$MAJOR2"))||(((("$MAJOR1" == "$MAJOR2")) && (("$MINOR1" >= "$MINOR2")))); then
Does anyone know why this 'if' does not use '-gt' for numeric compares and square brackets for test, like on the trunk? Am I getting source from the right place?
Thanks! , John