summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rwxr-xr-xautogen.sh2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c193778aa..859d0ef78b 100644
--- 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 Richard Hult <richard@imendio.com>
* gdk/quartz/gdkkeys-quartz.c: (gdk_keymap_get_caps_lock_state)
diff --git a/autogen.sh b/autogen.sh
index a276979199..d3fb066d3e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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