From aa6eeba0ff17bee291cea06a381063625ae24f9e Mon Sep 17 00:00:00 2001 From: Edremon <106028744+Edremon@users.noreply.github.com.> Date: Sat, 19 Jul 2025 14:28:11 +0000 Subject: [PATCH] Explicitly disable Brotli and ZSTD curl deps If those were found on the system, they would automatically be added as dependency. --- premake5-deps.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/premake5-deps.lua b/premake5-deps.lua index 5db06741..cd6bcc3f 100644 --- a/premake5-deps.lua +++ b/premake5-deps.lua @@ -659,6 +659,8 @@ if _OPTIONS["build-curl"] or _OPTIONS["all-build"] then "USE_LIBIDN2=OFF", "CURL_DISABLE_LDAP=ON", "USE_NGHTTP2=OFF", + "CURL_BROTLI=OFF", + "CURL_ZSTD=OFF" } if os.target() == 'windows' and string.match(_ACTION, 'vs.+') then table.insert(curl_common_defs, "CURL_STATIC_CRT=ON")