From 6d1d28f266197552dafb3aa0d6c1a3a167a9f9fc Mon Sep 17 00:00:00 2001 From: Joey Armstrong Date: Thu, 30 Jun 2011 09:16:21 -0700 Subject: [PATCH] Bug 666424: Don't use GLIB_CONFIG if if has the value 'no'. r=khuey --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index f4828159136..024c3de4c1f 100644 --- a/configure.in +++ b/configure.in @@ -8451,7 +8451,10 @@ if test -z "${GLIB_CFLAGS}" -o -z "${GLIB_LIBS}" ; then fi fi -if test -z "${GLIB_GMODULE_LIBS}" -a -n "${GLIB_CONFIG}"; then +if test -z "${GLIB_GMODULE_LIBS}" \ + -a -n "${GLIB_CONFIG}"\ + -a "${GLIB_CONFIG}" != no\ +; then GLIB_GMODULE_LIBS=`$GLIB_CONFIG gmodule --libs` fi