ZLIB_COMPAT is not defined for libminizip project, so just always use zng_ when zlib-ng is detected.

This commit is contained in:
Nathan Moinvaziri 2019-01-22 10:23:03 -08:00
parent cdedc087e7
commit 84ec941f15
3 changed files with 9 additions and 8 deletions

View File

@ -108,7 +108,7 @@ if(MZ_ZLIB AND NOT MZ_LIBCOMP)
endif()
endif()
endforeach()
message("${CMAKE_ARGS}")
ExternalProject_Add(zlib
PREFIX zlib
GIT_REPOSITORY ${ZLIB_REPOSITORY}
@ -182,6 +182,9 @@ endif()
if(NOT MZ_PKCRYPT AND NOT MZ_WZAES)
add_definitions(-DMZ_ZIP_NO_ENCRYPTION)
endif()
if(ZLIB_COMPAT)
add_definitions(-DZLIB_COMPAT)
endif()
# Check for system includes
check_include_file(stdint.h HAVE_STDINT_H)

View File

@ -15,7 +15,7 @@
#if defined(HAVE_ZLIB)
# include "zlib.h"
# if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT)
# if defined(ZLIBNG_VERNUM)
# include "zlib-ng.h"
# endif
#elif defined(HAVE_LZMA)
@ -26,9 +26,7 @@
/* Define z_crc_t in zlib 1.2.5 and less or if using zlib-ng */
#if defined(HAVE_ZLIB) && defined(ZLIBNG_VERNUM)
# if !defined(ZLIB_COMPAT)
# define ZLIB_PREFIX(x) zng_ ## x
# endif
typedef uint32_t z_crc_t;
#elif defined(HAVE_ZLIB)
# define ZLIB_PREFIX(x) x

View File

@ -15,13 +15,13 @@
#include "mz_strm_zlib.h"
#include "zlib.h"
#if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT)
#if defined(ZLIBNG_VERNUM)
# include "zlib-ng.h"
#endif
/***************************************************************************/
#if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT)
#if defined(ZLIBNG_VERNUM)
# define ZLIB_PREFIX(x) zng_ ## x
typedef zng_stream zlib_stream;
#else