From b2dfdc7509416b7c1e8a753347753d04c4daff03 Mon Sep 17 00:00:00 2001 From: Paul Fariello Date: Sat, 13 Apr 2019 00:41:24 +0200 Subject: [PATCH] Add libgcrypt minimum version in configure error log --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 097e13f7..4f6a6790 100644 --- a/configure.ac +++ b/configure.ac @@ -284,8 +284,8 @@ if test "x$enable_omemo" != xno; then [LIBS="-lgcrypt $LIBS"], [AM_CONDITIONAL([BUILD_OMEMO], [false]) AS_IF([test "x$enable_omemo" = xyes], - [AC_MSG_ERROR([gcrypt is required for OMEMO support])], - [AC_MSG_NOTICE([gcrypt not found, OMEMO support not enabled])])]) + [AC_MSG_ERROR([gcrypt >= 1.7.0 is required for OMEMO support])], + [AC_MSG_NOTICE([gcrypt >= 1.7.0 not found, OMEMO support not enabled])])]) AM_COND_IF([BUILD_OMEMO], [AC_DEFINE([HAVE_OMEMO], [1], [Have OMEMO])]) fi