summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2005-11-23 16:51:23 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2005-11-23 16:51:23 +0000
commit124f1d71167e11214ef393a36a910975a96dd8ed (patch)
tree2a9b68f261b777723b9c4ca66fff2298c2ccd953
parent033087bba048172aa68c160e0756bc7f420a0337 (diff)
downloadgdk-pixbuf-124f1d71167e11214ef393a36a910975a96dd8ed.tar.gz
Fix typo when checking libtool config deplibs_check_method. Moreover,
2005-11-23 Behdad Esfahbod <behdad@gnome.org> * configure.in (enable_explicit_deps): Fix typo when checking libtool config deplibs_check_method. Moreover, enable explicit deps if we get anything other than pass_all from libtool. (part of #318750)
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLog.pre-2-107
-rw-r--r--configure.in4
3 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f4b4007c3..cc7f3f696 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-11-23 Behdad Esfahbod <behdad@gnome.org>
+
+ * configure.in (enable_explicit_deps): Fix typo when checking
+ libtool config deplibs_check_method. Moreover, enable explicit
+ deps if we get anything other than pass_all from libtool. (part of
+ #318750)
+
2005-11-23 Matthias Clasen <mclasen@redhat.com>
* gtk/updateiconcache.c (write_csource): Don't create a big
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index f4b4007c3..cc7f3f696 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,10 @@
+2005-11-23 Behdad Esfahbod <behdad@gnome.org>
+
+ * configure.in (enable_explicit_deps): Fix typo when checking
+ libtool config deplibs_check_method. Moreover, enable explicit
+ deps if we get anything other than pass_all from libtool. (part of
+ #318750)
+
2005-11-23 Matthias Clasen <mclasen@redhat.com>
* gtk/updateiconcache.c (write_csource): Don't create a big
diff --git a/configure.in b/configure.in
index 64ae6ff94..090f8fe3c 100644
--- a/configure.in
+++ b/configure.in
@@ -370,8 +370,8 @@ AC_ARG_ENABLE(explicit-deps,
AC_MSG_CHECKING([Whether to write dependencies into .pc files])
case $enable_explicit_deps in
auto)
- deplib_check_method=`(./libtool --config; echo eval echo \\$deplib_check_method) | sh`
- if test "X$deplib_check_method" = Xnone || test "x$enable_static" = xyes ; then
+ 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
enable_explicit_deps=no