zlib: disable warning 4142 on MSVC This is about benign redefinition of types. We're not interested in it.
diff --git a/deps/zlib/zconf.h b/deps/zlib/zconf.h
index e87f145..229c400 100644
--- a/deps/zlib/zconf.h
+++ b/deps/zlib/zconf.h
@@ -14,6 +14,7 @@
* forms, we didn't write zlib */
#if defined(_MSC_VER)
# pragma warning( disable : 4131 )
+# pragma warning( disable : 4142 ) /* benign redefinition of type */
#endif
/* Maximum value for memLevel in deflateInit2 */