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 cf9e2a3..221d51c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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.
        Based on bug 552107, patch by Patryk Zawadzki
 
index 57b5d85..3e9e847 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