summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2005-11-23 16:46:18 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2005-11-23 16:46:18 +0000
commitc19e8c5458fb9dd9673137f07ea0e81608a47cea (patch)
tree678de6d74ffb2bbe984ef0d55c112c2d719c5dff
parent4b4ece03fc9a1d752c0934f050cdd4d015e3b3ed (diff)
downloadpango-c19e8c5458fb9dd9673137f07ea0e81608a47cea.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--configure.in4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index dc40cbd7..0cb5aeca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
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 Behdad Esfahbod <behdad@gnome.org>
+
* pango/Makefile.am: Link libpangoxft with -lm. (#318210)
2005-11-23 Behdad Esfahbod <behdad@gnome.org>
diff --git a/configure.in b/configure.in
index ced767e5..51d53547 100644
--- a/configure.in
+++ b/configure.in
@@ -564,8 +564,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