From f499a4fbe1a58e3230cf1f8dce51145f1f721cf0 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 21 Mar 2024 19:15:06 +0900 Subject: [PATCH] lib: nghttp2: Disable auto-detection for OpenSSL Signed-off-by: Hiroshi Hatake --- lib/nghttp2/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/nghttp2/CMakeLists.txt b/lib/nghttp2/CMakeLists.txt index 4681db75346..ee4cb0a4a11 100644 --- a/lib/nghttp2/CMakeLists.txt +++ b/lib/nghttp2/CMakeLists.txt @@ -60,7 +60,8 @@ set(OPENSSL_MSVC_STATIC_RT ON) find_package(Python3 COMPONENTS Interpreter) # Auto-detection of features that can be toggled -find_package(OpenSSL 1.0.1) +## This auto detection causes weird linker errors. So, it's disabled for now. +# find_package(OpenSSL 1.0.1) find_package(Libev 4.11) find_package(Libcares 1.7.5) find_package(ZLIB 1.2.3)