configure: Detect (and reject) LibreSSL

Rebased-From: a5a81f7354
Github-Pull: #6244
This commit is contained in:
Luke Dashjr 2015-06-06 14:23:38 +00:00 committed by UdjinM6
parent c709b86a5d
commit cee7c2e1f3

View File

@ -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"