From edbc15fa2b36d9e131707d7d58b79caec917e7f5 Mon Sep 17 00:00:00 2001 From: Paul Fariello Date: Wed, 10 Apr 2019 17:22:50 +0200 Subject: [PATCH] Don't build OMEMO by default --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0c4d005c..ea1e9f14 100644 --- a/configure.ac +++ b/configure.ac @@ -266,8 +266,9 @@ if test "x$enable_otr" != xno; then [AC_MSG_NOTICE([libotr not found, otr encryption support not enabled])])]) fi -AM_CONDITIONAL([BUILD_OMEMO], [true]) +AM_CONDITIONAL([BUILD_OMEMO], [false]) if test "x$enable_omemo" != xno; then + AM_CONDITIONAL([BUILD_OMEMO], [true]) PKG_CHECK_MODULES([libsignal], [libsignal-protocol-c >= 2.3.2], [LIBS="-lsignal-protocol-c $LIBS"], [AC_MSG_NOTICE([libsignal >= 2.3.2 not found, checking for libsignal 2.3.x...])