mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
ZLIB_COMPAT is not defined for libminizip project, so just always use zng_ when zlib-ng is detected.
This commit is contained in:
parent
cdedc087e7
commit
84ec941f15
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user