Hi Tom, On Mon, 2009-08-17 at 10:09 -0600, Tom Tromey wrote: > The only actual source change needed for this is to update > cp-hacking.texinfo. You might think that, given this, perhaps we should > not update the versions -- but I think it still makes sense, in that it > means that future patches can now rely on these minimums.
There is also autogen.sh (since we don't checkin the generated files). You will need something like this to accept later libtool versions: diff -u -r1.20 autogen.sh --- autogen.sh 18 May 2007 20:18:53 -0000 1.20 +++ autogen.sh 17 Aug 2009 21:28:19 -0000 @@ -18,7 +18,7 @@ if ${LIBTOOLIZE} --version < /dev/null > /dev/null 2>&1 ; then libtool_version=`${LIBTOOLIZE} --version | sed 's/^.*[^0-9.]\([0-9]\{1,\}\.[0-9.]\{1,\}\).*/\1/'` case $libtool_version in - 1.5*) + 1.5* | 2.[0-9]*) have_libtool=true ;; esac The rest is fine I think, using a lower version isn't really fatal (is it?) Cheers, Mark