From b731398a1a38ff402cd9ba32870629d8dd92f604 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 29 May 2024 14:06:29 -0400 Subject: [PATCH] curl: Set build options the way we need for CMake Set options added by the update to curl 8.8.0. --- Utilities/cmcurl/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt index 6fc86f3f57..b766aee425 100644 --- a/Utilities/cmcurl/CMakeLists.txt +++ b/Utilities/cmcurl/CMakeLists.txt @@ -90,7 +90,10 @@ set(HAVE_WIN32_WINNT 0) # we do not need this info set(HTTP_ONLY OFF CACHE INTERNAL "Curl is not http-only") set(PICKY_COMPILER OFF CACHE INTERNAL "Enable picky compiler options") set(SHARE_LIB_OBJECT OFF) +set(USE_ECH OFF) +set(USE_HTTPSRR OFF) set(USE_LIBIDN2 ON) +set(USE_LIBRTMP OFF) set(USE_NGHTTP2 ON) set(USE_NGTCP2 OFF) set(USE_OPENSSL_QUIC OFF)