From: Matthew Newton Date: Wed, 23 Jun 2021 17:45:25 +0000 (+0100) Subject: Check for OpenSSL 1.1.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=919dd6223a7bb762c2514faed050411ad0597995;p=thirdparty%2Ffreeradius-server.git Check for OpenSSL 1.1.1 --- diff --git a/configure b/configure index 491b5c40624..4b72bb594d8 100755 --- a/configure +++ b/configure @@ -11950,12 +11950,12 @@ fi 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 - #if (OPENSSL_VERSION_NUMBER >= 0x10100000L) + #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) yes #endif diff --git a/configure.ac b/configure.ac index 0d4e917128b..56e9600e2cb 100644 --- a/configure.ac +++ b/configure.ac @@ -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 - #if (OPENSSL_VERSION_NUMBER >= 0x10100000L) + #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) yes #endif ],