minizconf.h: (hopefully) fix MinGW compatibility of z_off64_t

This commit is contained in:
Daniel Gibson 2024-06-08 10:44:02 +02:00
parent ab676878b9
commit a6870cabfc

View file

@ -51,13 +51,18 @@
// FIXME: why not just set this to int64_t? // FIXME: why not just set this to int64_t?
#if !defined(_WIN32) && defined(Z_LARGE64) #if !defined(_WIN32) && defined(Z_LARGE64)
# define z_off64_t off64_t #define z_off64_t off64_t
#else #else
# if defined(_WIN32) && !defined(__GNUC__) #if defined(_WIN32)
# define z_off64_t __int64 #ifdef _MSC_VER
# else #define z_off64_t __int64
# define z_off64_t z_off_t #else
# endif #include <stdint.h>
#define z_off64_t int64_t
#endif
#else
#define z_off64_t z_off_t
#endif
#endif #endif
#if defined(__cplusplus) && __cplusplus >= 201103L #if defined(__cplusplus) && __cplusplus >= 201103L