forked from mirrors/nixpkgs
cygwin: zlib - we do not --disable-shared
This commit is contained in:
parent
af5484a630
commit
d2da94cc0b
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ stdenv.mkDerivation (rec {
|
||||||
makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ];
|
makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# zlib doesn't like the automatic --disable-shared from the Cygwin stdenv.
|
# CYGXXX: This is not needed anymore and non-functional, but left not to trigger rebuilds
|
||||||
cygwinConfigureEnableShared = true;
|
cygwinConfigureEnableShared = if (!stdenv.isCygwin) then true else null;
|
||||||
|
|
||||||
passthru.version = version;
|
passthru.version = version;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue