summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manishsinha@ubuntu.com>2013-03-13 14:09:07 -0700
committerSeif Lotfy <seif@lotfy.com>2013-03-14 00:24:24 +0100
commit88cc58e6d6014cb63dcb01a5a258401c2497994a (patch)
tree2d26d9486e5597aa3bd80b35889ef62a53aaa755
parentdcdaa99d305e2fd71ade313cfd1bf3654a9e382e (diff)
Changed configure.ac to disable telepathy logger
Signed-off-by: Seif Lotfy <seif@lotfy.com>
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index b135794..27c8729 100644
--- a/configure.ac
+++ b/configure.ac
@@ -79,16 +79,16 @@ dnl Optional dependencies
dnl ==============================================
AC_ARG_ENABLE([telepathy],
- AS_HELP_STRING([--enable-telepathy[=@<:@no/auto/yes@:>@]],[Build with Telepathy support]),
+ AS_HELP_STRING([--enable-telepathy],[Build with Telepathy support]),
[enable_telepathy=$enableval],
- [enable_telepathy="auto"])
+ [enable_telepathy="no"])
-if test "x$enable_telepathy" = "xauto" ; then
+if test "x$enable_telepathy" != "xno" ; then
PKG_CHECK_EXISTS([telepathy-glib >= $MIN_TP_GLIB_VERSION], \
enable_telepathy="yes", enable_telepathy="no")
fi
-if test "x$enable_telepathy" = "xyes" ; then
+if test "x$enable_telepathy" != "xno" ; then
PKG_CHECK_MODULES(TELEPATHY_GLIB, [telepathy-glib >= $MIN_TP_GLIB_VERSION])
DATAHUB_MODULES_CFLAGS="$DATAHUB_MODULES_CFLAGS $TELEPATHY_GLIB_CFLAGS"
DATAHUB_MODULES_LIBS="$DATAHUB_MODULES_LIBS $TELEPATHY_GLIB_LIBS"