From 094fa11d365ba68a55baf931fb80cd9cc0565209 Mon Sep 17 00:00:00 2001 From: warrows Date: Mon, 5 Mar 2018 22:49:17 +0100 Subject: [PATCH] [Compilation] Add additional information to compile with unsupported SSL --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 442bf43147e80..aa3401a00bfb7 100644 --- a/configure.ac +++ b/configure.ac @@ -795,8 +795,8 @@ fi AC_CHECK_LIB([crypto],[RAND_egd],[],[ AC_ARG_WITH([unsupported-ssl], [AS_HELP_STRING([--with-unsupported-ssl],[Build with system SSL (default is no; DANGEROUS; NOT SUPPORTED; You should use OpenSSL 1.0)])], - [AC_MSG_WARN([Detected unsupported SSL version: This is NOT supported, and may break consensus compatibility!])], - [AC_MSG_ERROR([Detected unsupported SSL version: This is NOT supported, and may break consensus compatibility!])] + [AC_MSG_WARN([Detected unsupported SSL version: This is NOT supported, and may break consensus compatibility! Use '--with-unsupported-ssl' if you don't care])], + [AC_MSG_ERROR([Detected unsupported SSL version: This is NOT supported, and may break consensus compatibility! Use '--with-unsupported-ssl' if you don't care])] ) ])