Skip to content

Commit

Permalink
tls: update min OpenSSL to 1.1.1
Browse files Browse the repository at this point in the history
1.1.0 was EOL'ed at the end of 2019 so far as I can tell.
1.1.1 was EOL'ed in september 2023, so even this new minimum version is
too old.

In future months I might bump the minimum version again, but there are
API backcompat reasons why setting this to 1.1.1 is useful for now.
  • Loading branch information
dormando committed Jun 22, 2024
1 parent 148f54b commit 68414b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ if test "x$enable_tls" = "xyes"; then
#include <sys/types.h>
#include <assert.h>
#include <openssl/ssl.h>], [ SSL_CTX* ssl_ctx = SSL_CTX_new(TLS_server_method());
assert(OPENSSL_VERSION_NUMBER >= 0x10100000L);],
assert(OPENSSL_VERSION_NUMBER >= 0x10101000L);],
[ libssl_linked=yes ], [ libssl_linked=no ])
if test $libssl_linked = yes; then
if test ! -z "$ledir" ; then
Expand Down

0 comments on commit 68414b4

Please sign in to comment.