summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-04-02 17:13:50 +0200
committerMax Kellermann <max@musicpd.org>2020-04-02 17:16:05 +0200
commita689b881d3a909c9075a832034c61c823443c2bc (patch)
tree150040dda83dcd548627cede000c81743c3a6e35 /test
parente94c436264ae76b10fa8a539a7f64362efb8e766 (diff)
test/meson.build: work around linker failure due to statically linked CURL
Diffstat (limited to 'test')
-rw-r--r--test/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build
index f20a79aa0..a1dc7840d 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -336,6 +336,11 @@ if curl_dep.found()
include_directories: inc,
dependencies: [
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,
],
)