summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-11-12 19:57:42 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2007-11-12 19:57:42 +0000
commit6bf0f046050ec30c044bd7ec11cf41f1420d9d9a (patch)
tree0eaec92c5c7966213a96588f3a649afed75895e9
parent3f0402b81ad4f9cc3dcfaae3e69d02e5d38a31c5 (diff)
Minimal patch for correct detection of loudmouth >= 1.3.2 - PKG_CHECK_MODULES doesn't work like that
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7b0bc8be6..f5020f419 100644
--- a/configure.ac
+++ b/configure.ac
@@ -163,7 +163,7 @@ PKG_CHECK_MODULES(LOUDMOUTH, loudmouth-1.0 >= 1.1.1)
AC_SUBST(LOUDMOUTH_CFLAGS)
AC_SUBST(LOUDMOUTH_LIBS)
-PKG_CHECK_MODULES(LOUDMOUTH, loudmouth-1.0 >= 1.3.2, [
+PKG_CHECK_EXISTS(loudmouth-1.0 >= 1.3.2, [
AC_DEFINE(HAVE_LM_SRV_LOOKUPS, 1, [Define if Loudmouth can perform SRV lookups on JID domain])
AC_DEFINE(HAVE_LM_STARTTLS, 1, [Define if Loudmouth supports StartTLS])
AC_DEFINE(HAVE_LM_CONNECTION_GET_FULL_JID, 1, [Define if Loudmouth supports XMPP1.0 protocol])], [])