You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When libz-sys fails to find zlib, it falls back to building it from source.
However, when curl-rust vendors libcurl (when it falls back), it transitively depends on either zlib being present in system include paths orlibz-sys vendoring it into the same paths:
let dst = PathBuf::from(env::var_os("OUT_DIR").unwrap());
let include = dst.join("include");
let build = dst.join("build");
libz-sys recently attempted to use pkg-config on Windows, which broke curl-sys using an MSVC toolchain (from inside an MSYS2 environment, presumably withoutvcpkg), because it would no longer need to build zlib from source: rust-lang/libz-sys#143
However, because curl-sys does not support pkg-config (#486), on Windows:
...but otherwise this means zlib.h needs to be in $OUT_DIR/include (which it gets from libz-sys' vendoring) or in the system include paths (which it gets on most non-Windows platforms).
When vendoring libcurl, curl-sys should find zlib properly (ideally, the same way as libz-sys does).
It would be better if you needed to explicitly enable vendoring in this library, because while "silent fallback" can be helpful, it leads to surprising behaviour like this, and makes it more difficult to audit your dependencies.
The text was updated successfully, but these errors were encountered:
When
libz-sys
fails to findzlib
, it falls back to building it from source.However, when
curl-rust
vendorslibcurl
(when it falls back), it transitively depends on eitherzlib
being present in system include paths orlibz-sys
vendoring it into the same paths:curl-rust/curl-sys/build.rs
Lines 57 to 59 in ff6ad21
libz-sys
recently attempted to usepkg-config
on Windows, which brokecurl-sys
using an MSVC toolchain (from inside an MSYS2 environment, presumably withoutvcpkg
), because it would no longer need to buildzlib
from source: rust-lang/libz-sys#143However, because
curl-sys
does not supportpkg-config
(#486), on Windows:libcurl
withvcpkg
(Allow using vcpkg on any Windows target, and use find_package #509 would slightly improve this)libcurl
from sourceWhen building from source,
curl-sys
generates apkg-config
file, but doesn't add any linkage or include path information forzlib
:curl-rust/curl-sys/build.rs
Lines 98 to 100 in ff6ad21
...and enables
zlib
support:curl-rust/curl-sys/build.rs
Line 127 in ff6ad21
...it might get something from
vcpkg
if built on an MSVC host (becausebuild.rs
cfg directives are based on the host, not the target):curl-rust/curl-sys/build.rs
Lines 296 to 299 in ff6ad21
...but otherwise this means
zlib.h
needs to be in$OUT_DIR/include
(which it gets fromlibz-sys
' vendoring) or in the system include paths (which it gets on most non-Windows platforms).When vendoring
libcurl
,curl-sys
should findzlib
properly (ideally, the same way aslibz-sys
does).It would be better if you needed to explicitly enable vendoring in this library, because while "silent fallback" can be helpful, it leads to surprising behaviour like this, and makes it more difficult to audit your dependencies.
The text was updated successfully, but these errors were encountered: