aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2015-06-06 14:23:38 +0000
committerWladimir J. van der Laan <laanwj@gmail.com>2015-06-10 08:09:28 +0200
commit0401aa2e8f6149109c05fc525116cf042bfb713c (patch)
tree1437d3d3b639ac373df94c1932da101db93753c4
parent3eada74d6f4720e650c67461c04c3aafdeaff21e (diff)
downloadbitcoin-0401aa2e8f6149109c05fc525116cf042bfb713c.tar.xz
configure: Detect (and reject) LibreSSL
Rebased-From: a5a81f7354b3aa3e797d973a7e6840f0e50e6533 Github-Pull: #6244
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 091feebd13..7b84827c7c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -677,6 +677,14 @@ else
fi
fi
+AC_CHECK_LIB([crypto],[RAND_egd],[],[
+ AC_ARG_WITH([libressl],
+ [AS_HELP_STRING([--with-libressl],[Build with system LibreSSL (default is no; DANGEROUS; NOT SUPPORTED)])],
+ [AC_MSG_WARN([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])],
+ [AC_MSG_ERROR([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])]
+ )
+])
+
CFLAGS_TEMP="$CFLAGS"
LIBS_TEMP="$LIBS"
CFLAGS="$CFLAGS $SSL_CFLAGS $CRYPTO_CFLAGS"