diff options
| author | Luke Dashjr <[email protected]> | 2015-06-06 14:23:38 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-06-06 14:23:38 +0000 |
| commit | a5a81f7354b3aa3e797d973a7e6840f0e50e6533 (patch) | |
| tree | 181226c7f76085a6637cb7daacf607e27ba5d806 | |
| parent | Merge pull request #6194 (diff) | |
| download | discoin-a5a81f7354b3aa3e797d973a7e6840f0e50e6533.tar.xz discoin-a5a81f7354b3aa3e797d973a7e6840f0e50e6533.zip | |
configure: Detect (and reject) LibreSSL
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c5d08a028..a4d932dcc 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" |