test/meson.build: work around linker failure due to statically linked CURL

This commit is contained in:
Max Kellermann 2020-04-02 17:13:50 +02:00
parent e94c436264
commit a689b881d3

View File

@ -336,6 +336,11 @@ if curl_dep.found()
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
curl_dep, curl_dep,
# Explicitly linking with zlib here works around a linker
# failure on Windows, because our Windows CURL build is
# statically linked and thus declares no dependency on zlib
zlib_dep,
], ],
) )