Skip to content

Commit

Permalink
Update 2 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-zlib (1.2.13-3 -> 1.3-1)
mingw-w64-x86_64-zlib (1.2.13-3 -> 1.3-1)

Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
  • Loading branch information
Git for Windows Build Agent committed Aug 20, 2023
1 parent 1d07c6a commit bdd233f
Show file tree
Hide file tree
Showing 35 changed files with 407 additions and 393 deletions.
Binary file modified mingw32/bin/zlib1.dll
Binary file not shown.
8 changes: 6 additions & 2 deletions mingw32/include/zconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,11 @@
#endif

#ifdef Z_SOLO
typedef unsigned long z_size_t;
# ifdef _WIN64
typedef unsigned long long z_size_t;
# else
typedef unsigned long z_size_t;
# endif
#else
# define z_longlong long long
# if defined(NO_SIZE_T)
Expand Down Expand Up @@ -520,7 +524,7 @@ typedef uLong FAR uLongf;
#if (defined(_WIN32) && defined(__GNUC__) && defined(_LARGEFILE64_SOURCE)) || defined(Z_LARGE64)
# define z_off64_t off64_t
#else
# if defined(_WIN32) && !defined(__GNUC__) && !defined(Z_SOLO)
# if defined(_WIN32) && !defined(__GNUC__)
# define z_off64_t __int64
# else
# define z_off64_t z_off_t
Expand Down
379 changes: 191 additions & 188 deletions mingw32/include/zlib.h

Large diffs are not rendered by default.

Binary file modified mingw32/lib/libz.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/lib/pkgconfig/zlib.pc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ includedir=${prefix}/include

Name: zlib
Description: zlib compression library
Version: 1.2.13
Version: 1.3

Requires:
Libs: -L${libdir} -lz
Expand Down
Binary file modified mingw32/share/man/man3/zlib.3.gz
Binary file not shown.
Binary file modified mingw64/bin/zlib1.dll
Binary file not shown.
8 changes: 6 additions & 2 deletions mingw64/include/zconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,11 @@
#endif

#ifdef Z_SOLO
typedef unsigned long z_size_t;
# ifdef _WIN64
typedef unsigned long long z_size_t;
# else
typedef unsigned long z_size_t;
# endif
#else
# define z_longlong long long
# if defined(NO_SIZE_T)
Expand Down Expand Up @@ -520,7 +524,7 @@ typedef uLong FAR uLongf;
#if (defined(_WIN32) && defined(__GNUC__) && defined(_LARGEFILE64_SOURCE)) || defined(Z_LARGE64)
# define z_off64_t off64_t
#else
# if defined(_WIN32) && !defined(__GNUC__) && !defined(Z_SOLO)
# if defined(_WIN32) && !defined(__GNUC__)
# define z_off64_t __int64
# else
# define z_off64_t z_off_t
Expand Down
Loading

0 comments on commit bdd233f

Please sign in to comment.