From a66497b792da1dd3d400dfe1f38bad95cf141a9c Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Thu, 15 May 2025 00:11:39 -0400 Subject: [PATCH] cmake: disable building `libidn2` in libcurl --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3df6edea64..c389207ff7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -203,6 +203,9 @@ include_directories(SYSTEM third-party/inja) # TODO - probably integrate with ZSTD since we have it already set(CURL_USE_LIBSSH2 OFF) set(CURL_ZLIB OFF) +# suddenly became enabled on macOS atleast, only needed for unicode URLs +# wasn't being properly statically linked +set(USE_LIBIDN2 OFF) if(WIN32) set(CURL_USE_SCHANNEL ON) # native Windows SSL support elseif(APPLE)