summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2008-09-17 15:10:30 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-09-17 15:10:30 +0000
commitc35ea43d670e299629aafcd67797bb7e7df2fc60 (patch)
tree994746e217eb4cc634de2c982772d981b1507d1d
parented877089bd19930734652b3a55c2295e07f3df95 (diff)
downloadgdk-pixbuf-c35ea43d670e299629aafcd67797bb7e7df2fc60.tar.gz
Bug 552107 – Small libtool fixes
2008-09-17 Matthias Clasen <mclasen@redhat.com> Bug 552107 – Small libtool fixes * configure.in: Regenerate libtool early, quote $deplibs_check_method. Patch by Patryk Zawadzki svn path=/trunk/; revision=21411
-rw-r--r--ChangeLog7
-rw-r--r--configure.in5
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index df5e62006..cfa21eaed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
+ Bug 552107 – Small libtool fixes
+
+ * configure.in: Regenerate libtool early, quote $deplibs_check_method.
+ Patch by Patryk Zawadzki
+
+2008-09-17 Matthias Clasen <mclasen@redhat.com>
+
Bug 551722 – gtk_widget_set_scroll_adjustments() should check the
signal signature
diff --git a/configure.in b/configure.in
index 60702693e..4cdecbe39 100644
--- a/configure.in
+++ b/configure.in
@@ -184,6 +184,9 @@ fi
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
+dnl when using libtool 2.x create libtool early, because it's used in configure
+m4_ifdef([LT_OUTPUT], [LT_OUTPUT])
+
# Make sure we use 64-bit versions of various file stuff.
AC_SYS_LARGEFILE
@@ -398,7 +401,7 @@ AC_MSG_CHECKING([Whether to write dependencies into .pc files])
case $enable_explicit_deps in
auto)
export SED
- deplibs_check_method=`(./libtool --config; echo 'eval echo $deplibs_check_method') | sh`
+ deplibs_check_method=`(./libtool --config; echo 'eval echo \"$deplibs_check_method\"') | sh`
if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then
enable_explicit_deps=yes
else