Skip to content
Snippets Groups Projects
Commit 3b56479e authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

configure: do not require final release of OpenSSL

Red Hat ships patched version of OpenSSL in RHEL 6, which claims to be a
pre-release according to the header file. Let's be more benevolent and
require just some 1.0.0 version.
parent 51f3f443
No related branches found
No related tags found
No related merge requests found
......@@ -285,7 +285,7 @@ AS_IF([test "$with_openssl" = "no"],[
AC_EGREP_CPP(openssl_version_ok,
[#include <openssl/crypto.h>
#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL)
#if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
openssl_version_ok
#endif
],[],[AC_MSG_ERROR([OpenSSL library version >= 1.0.0 is required.])]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment