Bug 551355 – [PATCH] Make glib build with libtool 2.2
authorBehdad Esfahbod <behdad@gnome.org>
Sat, 11 Oct 2008 00:04:51 +0000 (00:04 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Sat, 11 Oct 2008 00:04:51 +0000 (00:04 +0000)
2008-10-10  Behdad Esfahbod  <behdad@gnome.org>

        Bug 551355 – [PATCH] Make glib build with libtool 2.2

        * autogen.sh: Accept libtool 2.2.   We are moving towards having
        it working.

svn path=/trunk/; revision=7593

ChangeLog
autogen.sh

index cf9e2a3c0e3b2dd6d1f6bbca51e71835d42f96ee..221d51c233c688df1260afc2c55c3145850de3dd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
+
+       Bug 551355 – [PATCH] Make glib build with libtool 2.2
+
+       * autogen.sh: Accept libtool 2.2.   We are moving towards having
+       it working.
+
 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
 
        * configure.in: With libtool 2.x, regenerate libtool early.
index 57b5d850ca943b673b3be68b113b7d94f4370643..3e9e8476e2cb5fe6a37d5376ae4797d03ccbcdbe 100755 (executable)
@@ -16,7 +16,7 @@ have_libtool=false
 if libtoolize --version < /dev/null > /dev/null 2>&1 ; then
        libtool_version=`libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
        case $libtool_version in
-           1.4*|1.5*)
+           1.4*|1.5*|2.2*)
                have_libtool=true
                ;;
        esac