From 8d067e61b0a1ac2969cd2f119b134c2743f1b0af Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 26 Jun 2024 15:45:33 +0200 Subject: [PATCH] quic: openssl quic, cmake and doc version update to 3.3.0 Closes #14028 --- CMakeLists.txt | 2 +- docs/HTTP3.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2384104877..5a4e8c201a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -767,7 +767,7 @@ if(USE_OPENSSL_QUIC) if(USE_NGTCP2 OR USE_QUICHE OR USE_MSH3) message(FATAL_ERROR "Only one HTTP/3 backend can be selected!") endif() - find_package(OpenSSL 3.2.0 REQUIRED) + find_package(OpenSSL 3.3.0 REQUIRED) find_package(NGHTTP3 REQUIRED) set(USE_NGHTTP3 ON) diff --git a/docs/HTTP3.md b/docs/HTTP3.md index 1a528a8c1b..2a6ebaa8a1 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -209,10 +209,10 @@ Build curl: QUIC support is **EXPERIMENTAL** -Build OpenSSL 3.2.0 +Build OpenSSL 3.3.1 % cd .. - % git clone -b openssl-3.2.0 https://github.com/openssl/openssl + % git clone -b openssl-3.3.1 https://github.com/openssl/openssl % cd openssl % ./config enable-tls1_3 --prefix= --libdir=/lib % make