Include zconf.h for windows large file support.

This commit is contained in:
Mark Adler 2011-10-01 10:16:04 -07:00
parent 7142fcfeed
commit 64eccafa78
1 changed files with 5 additions and 1 deletions

View File

@ -412,11 +412,15 @@ typedef uLong FAR uLongf;
# define z_off_t long
#endif
#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
#if !defined(_WIN32) && (defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0)
# define z_off64_t off64_t
#else
# if defined(_WIN32)
# define z_off64_t __int64
# else
# define z_off64_t z_off_t
#endif
#endif
#if defined(__OS400__)
# define NO_vsnprintf