From b4c511e9ee69d5a3090fc89d8b02b19b789e3416 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 20 Apr 2022 19:12:45 +0200 Subject: [PATCH] Add prefix to the functions added in zlib 1.2.12 too They have been forgotten in the upstream zconf.h (which looks like a bug), but need to be prefixed with our custom prefix too, just as all the other functions. --- zconf.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zconf.h b/zconf.h index 7347d4b..12b60ca 100644 --- a/zconf.h +++ b/zconf.h @@ -71,6 +71,9 @@ # endif # define crc32 Z_ADD_PREFIX(crc32) # define crc32_combine Z_ADD_PREFIX(crc32_combine) +# define crc32_combine_gen Z_ADD_PREFIX(crc32_combine_gen) +# define crc32_combine_gen64 Z_ADD_PREFIX(crc32_combine_gen64) +# define crc32_combine_op Z_ADD_PREFIX(crc32_combine_op) # define crc32_combine64 Z_ADD_PREFIX(crc32_combine64) # define crc32_z Z_ADD_PREFIX(crc32_z) # define deflate Z_ADD_PREFIX(deflate)