cygwin: zlib - we do not --disable-shared

This commit is contained in:
Florian Friesdorf
2015-05-28 10:53:36 +02:00
committed by Rok Garbas
parent af5484a630
commit d2da94cc0b
+2 -2
View File
@@ -40,8 +40,8 @@ stdenv.mkDerivation (rec {
makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ];
};
# zlib doesn't like the automatic --disable-shared from the Cygwin stdenv.
cygwinConfigureEnableShared = true;
# CYGXXX: This is not needed anymore and non-functional, but left not to trigger rebuilds
cygwinConfigureEnableShared = if (!stdenv.isCygwin) then true else null;
passthru.version = version;