aboutsummaryrefslogtreecommitdiffstats
path: root/m4/ax_arg_openssl.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/ax_arg_openssl.m4')
-rw-r--r--m4/ax_arg_openssl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_arg_openssl.m4 b/m4/ax_arg_openssl.m4
index 972dfd0..7391873 100644
--- a/m4/ax_arg_openssl.m4
+++ b/m4/ax_arg_openssl.m4
@@ -61,12 +61,12 @@ else
fi
AS_IF([test "$cf_enable_openssl" != "no"],
- [AC_MSG_CHECKING(for LibreSSL or OpenSSL 1.0.1f and above)
+ [AC_MSG_CHECKING(for LibreSSL, or OpenSSL 1.1.1 and above)
AC_RUN_IFELSE([
AC_LANG_PROGRAM([
#include <openssl/opensslv.h>
#include <stdlib.h>],
- [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x1000106fL)); ]])],
+ [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x1010100fL)); ]])],
[cf_openssl_version_ok=yes],
[cf_openssl_version_ok=no],
[cf_openssl_version_ok=no])