mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-25 07:58:40 -05:00
cURL: Actually disable ZLIB/ZSTD
cURL tries to find ZSTD anyways due to the lack of setting it in CACHE, and for both ZLIB and ZSTD if we had done find_package previously, cURL would still use ZLIB/ZSTD regardless of the set variable.
This commit is contained in:
parent
4af06fd487
commit
184c6ee068
4
Externals/curl/CMakeLists.txt
vendored
4
Externals/curl/CMakeLists.txt
vendored
|
|
@ -13,7 +13,9 @@ set(HTTP_ONLY ON)
|
|||
set(CURL_USE_LIBPSL OFF)
|
||||
set(CURL_USE_LIBSSH2 OFF)
|
||||
set(CURL_ZLIB OFF CACHE BOOL "" FORCE)
|
||||
set(CURL_ZSTD OFF)
|
||||
set(CURL_ZSTD OFF CACHE BOOL "" FORCE)
|
||||
set(ZLIB_FOUND FALSE) # TODO: Remove once we update to cURL >=8.17.1 https://github.com/curl/curl/pull/20147
|
||||
set(ZSTD_FOUND FALSE) # TODO: Same as above
|
||||
set(USE_LIBIDN2 OFF)
|
||||
set(USE_NGHTTP2 OFF)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user