Skip to content

Commit

Permalink
- Proper fix to deal with Z_SOLO.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbjh committed Mar 19, 2024
1 parent 660b773 commit e142024
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(__GNUC__) && defined(__int64))
#elif (defined(_WIN32) && !defined(__GNUC__)) || (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(__GNUC__) && defined(__int64))
#elif (defined(_WIN32) && !defined(__GNUC__)) || (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(__GNUC__) && defined(__int64))
#elif (defined(_WIN32) && !defined(__GNUC__)) || (defined(__GNUC__) && defined(__int64))
# define z_off64_t __int64
#elif defined(__GO32__)
# define z_off64_t offset_t
Expand Down

0 comments on commit e142024

Please sign in to comment.