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:18:07 +0200
commit09334e04a90fa49b68f9d3b3e3c4d739de144876 (patch)
tree92b4626b7e2e85055d97f614334c557d745ac194
parent181771b71296ffc242a4301a472f5a7ad5f6cc76 (diff)
downloadbitcoin-09334e04a90fa49b68f9d3b3e3c4d739de144876.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 579035f59a..ba8fc08afd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -701,6 +701,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"