]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Check for OpenSSL 1.1.1
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Wed, 23 Jun 2021 17:45:25 +0000 (18:45 +0100)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Wed, 23 Jun 2021 17:46:12 +0000 (18:46 +0100)
configure
configure.ac

index 491b5c4062434227a9e195465ab1fe9501c28c5d..4b72bb594d8e5abaae99599719a204366e94b24a 100755 (executable)
--- a/configure
+++ b/configure
 
 done
 
-    { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for OpenSSL version >= 1.1.0" >&5
-printf %s "checking for OpenSSL version >= 1.1.0... " >&6; }
+    { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for OpenSSL version >= 1.1.1" >&5
+printf %s "checking for OpenSSL version >= 1.1.1... " >&6; }
     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 #include <openssl/crypto.h>
-       #if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
+       #if (OPENSSL_VERSION_NUMBER >= 0x10101000L)
        yes
        #endif
 
index 0d4e917128b94c0a2390fd56fea7ae1611248407..56e9600e2cbcbd1cd183778cbc7c417bed8c73cd 100644 (file)
@@ -1199,10 +1199,10 @@ if test "x$WITH_OPENSSL" = xyes; then
       ]
     )
 
-    AC_MSG_CHECKING([for OpenSSL version >= 1.1.0])
+    AC_MSG_CHECKING([for OpenSSL version >= 1.1.1])
     AC_EGREP_CPP(yes,
       [#include <openssl/crypto.h>
-       #if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
+       #if (OPENSSL_VERSION_NUMBER >= 0x10101000L)
        yes
        #endif
       ],