mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
avoid redefining already defined type
This commit is contained in:
parent
91112baa26
commit
91182928a4
@ -26,10 +26,15 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _ZLIB_H
|
#ifndef _ZLIB_H
|
||||||
# if (ZLIB_VERNUM < 0x1270)
|
# ifndef ZLIB_VERNUM
|
||||||
typedef unsigned long z_crc_t;
|
/* No zlib */
|
||||||
# else
|
typedef uint32_t z_crc_t;
|
||||||
typedef uint32_t z_crc_t;
|
# elif (ZLIB_VERNUM & 0xf != 0xf) && (ZLIB_VERNUM < 0x1270)
|
||||||
|
/* Define z_crc_t in zlib 1.2.6 and less */
|
||||||
|
typedef unsigned long z_crc_t;
|
||||||
|
# elif (ZLIB_VERNUM & 0xf == 0xf) && (ZLIB_VERNUM < 0x12df)
|
||||||
|
/* Define z_crc_t in zlib-ng 2.0.7 and less */
|
||||||
|
typedef unsigned int z_crc_t;
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
12
mz_crypt.c
12
mz_crypt.c
@ -34,11 +34,15 @@ int32_t mz_crypt_rand(uint8_t *buf, int32_t size) {
|
|||||||
|
|
||||||
uint32_t mz_crypt_crc32_update(uint32_t value, const uint8_t *buf, int32_t size) {
|
uint32_t mz_crypt_crc32_update(uint32_t value, const uint8_t *buf, int32_t size) {
|
||||||
#if defined(HAVE_ZLIB)
|
#if defined(HAVE_ZLIB)
|
||||||
/* Define z_crc_t in zlib 1.2.5 and less or if using zlib-ng */
|
# ifndef ZLIB_VERNUM
|
||||||
# if (ZLIB_VERNUM < 0x1270)
|
/* HAVE_ZLIB but no ZLIB_VERNUM? */
|
||||||
typedef unsigned long z_crc_t;
|
|
||||||
# else
|
|
||||||
typedef uint32_t z_crc_t;
|
typedef uint32_t z_crc_t;
|
||||||
|
# elif (ZLIB_VERNUM & 0xf != 0xf) && (ZLIB_VERNUM < 0x1270)
|
||||||
|
/* Define z_crc_t in zlib 1.2.6 and less */
|
||||||
|
typedef unsigned long z_crc_t;
|
||||||
|
# elif (ZLIB_VERNUM & 0xf == 0xf) && (ZLIB_VERNUM < 0x12df)
|
||||||
|
/* Define z_crc_t in zlib-ng 2.0.7 and less */
|
||||||
|
typedef unsigned int z_crc_t;
|
||||||
# endif
|
# endif
|
||||||
return (uint32_t)ZLIB_PREFIX(crc32)((z_crc_t)value, buf, (uInt)size);
|
return (uint32_t)ZLIB_PREFIX(crc32)((z_crc_t)value, buf, (uInt)size);
|
||||||
#elif defined(HAVE_LZMA)
|
#elif defined(HAVE_LZMA)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user