Skip to content

Commit

Permalink
- Proper fix for issue with MinGW{-w64} that is independent of header…
Browse files Browse the repository at this point in the history
… files.
  • Loading branch information
dbjh committed Feb 27, 2024
1 parent d162d0f commit 0f56c5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ typedef uLong FAR uLongf;

#if !defined(_WIN32) && defined(Z_LARGE64)
# define z_off64_t off64_t
#elif defined(_WIN32) && !defined(__CYGWIN__)
#elif defined(_WIN32) || (defined(__GNUC__) && defined(__int64))
# define z_off64_t __int64
#elif defined(__GO32__)
# define z_off64_t offset_t
Expand Down
2 changes: 1 addition & 1 deletion zconf.h.cmakein
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ typedef uLong FAR uLongf;

#if !defined(_WIN32) && defined(Z_LARGE64)
# define z_off64_t off64_t
#elif defined(_WIN32) && !defined(__CYGWIN__)
#elif defined(_WIN32) || (defined(__GNUC__) && defined(__int64))
# define z_off64_t __int64
#elif defined(__GO32__)
# define z_off64_t offset_t
Expand Down
2 changes: 1 addition & 1 deletion zconf.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ typedef uLong FAR uLongf;

#if !defined(_WIN32) && defined(Z_LARGE64)
# define z_off64_t off64_t
#elif defined(_WIN32) && !defined(__CYGWIN__)
#elif defined(_WIN32) || (defined(__GNUC__) && defined(__int64))
# define z_off64_t __int64
#elif defined(__GO32__)
# define z_off64_t offset_t
Expand Down

0 comments on commit 0f56c5a

Please sign in to comment.