about summary refs log tree commit diff stats
path: root/configure.ac
diff options
context:
space:
mode:
authorPaul Fariello <paul@fariello.eu>2019-04-10 17:22:50 +0200
committerPaul Fariello <paul@fariello.eu>2019-04-10 17:23:46 +0200
commitedbc15fa2b36d9e131707d7d58b79caec917e7f5 (patch)
tree4fa22d87f40645ba63ce93362780776d49f1bf9b /configure.ac
parent01e96769c2eb796cef3a9d2413453304c91111e6 (diff)
downloadprofani-tty-edbc15fa2b36d9e131707d7d58b79caec917e7f5.tar.gz
Don't build OMEMO by default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
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...])