]> Pileus Git - ~andy/gtk/commitdiff
Fix typo when checking libtool config deplibs_check_method. Moreover,
authorBehdad Esfahbod <behdad@gnome.org>
Wed, 23 Nov 2005 16:51:23 +0000 (16:51 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Wed, 23 Nov 2005 16:51:23 +0000 (16:51 +0000)
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)

ChangeLog
ChangeLog.pre-2-10
configure.in

index f4b4007c354a3c66c5cc9325a60e27d40855066b..cc7f3f69637010f75d4b42aef75bd9cc5f81ec04 100644 (file)
--- 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
index f4b4007c354a3c66c5cc9325a60e27d40855066b..cc7f3f69637010f75d4b42aef75bd9cc5f81ec04 100644 (file)
@@ -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
index 64ae6ff9457e54fcc1cb1b578a71c07d677aace4..090f8fe3cd5307e42579c65fe8606167efa8a63a 100644 (file)
@@ -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