From: Hans Kristian Rosbach Date: Fri, 11 Jun 2021 10:44:06 +0000 (+0200) Subject: Version 2.0.4 X-Git-Tag: 2.0.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=558192b4a6f9c8142a0e17ff3c4574a20a2dc96f;p=thirdparty%2Fzlib-ng.git Version 2.0.4 - Fix inflate corruption #982 - Minor code cleanup #983 #984 - Fix mpicc compilation #959 - Fix build on NetBSD #964 - Fix build on OpenBSD #970 - Fix build on Cygwin #972 #974 - Fix linter warnings in configure #975 - Spelling fixes #961 - Improve unistd.h handling #960 - Remove stdarg.h detection #976 - CI/Test improvements #977 #981 #985 - Cmake improvements #980 #989 --- diff --git a/Makefile.in b/Makefile.in index 68e921774..0dd656d64 100644 --- a/Makefile.in +++ b/Makefile.in @@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a LDSHARED=$(CC) LDSHAREDFLAGS=-shared -VER=2.0.3 +VER=2.0.4 VER1=2 STATICLIB=$(LIBNAME1).a diff --git a/zlib-ng.h b/zlib-ng.h index b506faddc..2a078385f 100644 --- a/zlib-ng.h +++ b/zlib-ng.h @@ -44,11 +44,11 @@ extern "C" { #endif -#define ZLIBNG_VERSION "2.0.3" -#define ZLIBNG_VERNUM 0x2030 +#define ZLIBNG_VERSION "2.0.4" +#define ZLIBNG_VERNUM 0x2040 #define ZLIBNG_VER_MAJOR 2 #define ZLIBNG_VER_MINOR 0 -#define ZLIBNG_VER_REVISION 3 +#define ZLIBNG_VER_REVISION 4 #define ZLIBNG_VER_SUBREVISION 0 /* diff --git a/zlib.h b/zlib.h index ee5edde6f..0b4434233 100644 --- a/zlib.h +++ b/zlib.h @@ -46,11 +46,11 @@ extern "C" { #endif -#define ZLIBNG_VERSION "2.0.3" -#define ZLIBNG_VERNUM 0x2030 +#define ZLIBNG_VERSION "2.0.4" +#define ZLIBNG_VERNUM 0x2040 #define ZLIBNG_VER_MAJOR 2 #define ZLIBNG_VER_MINOR 0 -#define ZLIBNG_VER_REVISION 3 +#define ZLIBNG_VER_REVISION 4 #define ZLIBNG_VER_SUBREVISION 0 #define ZLIB_VERSION "1.2.11.zlib-ng" diff --git a/zutil.c b/zutil.c index a01150ad0..b38dc45a9 100644 --- a/zutil.c +++ b/zutil.c @@ -21,7 +21,7 @@ z_const char * const PREFIX(z_errmsg)[10] = { }; const char zlibng_string[] = - " zlib-ng 2.0.3 forked from zlib"; + " zlib-ng 2.0.4 forked from zlib"; #ifdef ZLIB_COMPAT const char * Z_EXPORT zlibVersion(void) {