zlib: fix windows static compile

wip/yesman
Taeer Bar-Yam 3 years ago
parent 61a31ad3d6
commit 9c662a39b2
  1. 2
      pkgs/development/libraries/zlib/default.nix

@ -84,7 +84,7 @@ stdenv.mkDerivation (rec {
''
# Non-typical naming confuses libtool which then refuses to use zlib's DLL
# in some cases, e.g. when compiling libpng.
+ lib.optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
+ lib.optionalString (stdenv.hostPlatform.libc == "msvcrt" && shared) ''
ln -s zlib1.dll $out/bin/libz.dll
'';

Loading…
Cancel
Save