]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
zlib 1.2.12
authorNathan Moinvaziri <nathan@nathanm.com>
Tue, 7 Jun 2022 21:21:48 +0000 (14:21 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Mon, 13 Jun 2022 13:58:03 +0000 (15:58 +0200)
17 files changed:
README.md
crc32_braid.c
crc32_braid_comb.c
deflate.c
gzguts.h
gzlib.c
gzread.c.in
gzwrite.c
infback.c
inflate.c
inflate.h
inftrees.c
inftrees.h
tools/makecrct.c
trees.c
zlib.h.in
zutil.h

index 0dd1b1c37e383ee86db0e7b975576303e16fe7a2..1efe7f2f474636560115dd11d12cfb2713d606ff 100644 (file)
--- a/README.md
+++ b/README.md
@@ -142,7 +142,7 @@ with zlib, then zlib-ng will temporarily be used instead by the program,
 without risking system-wide instability.
 
 ```
-LD_PRELOAD=/opt/zlib-ng/libz.so.1.2.11.zlib-ng /usr/bin/program
+LD_PRELOAD=/opt/zlib-ng/libz.so.1.2.12.zlib-ng /usr/bin/program
 ```
 
 ### Cmake
index fee7992bb5743fa4180d8ad49eb8d8cfd18c9902..f5b223eeabfe840f3bf594bb5d73319e683f7f5e 100644 (file)
@@ -1,5 +1,5 @@
 /* crc32_braid.c -- compute the CRC-32 of a data stream
- * Copyright (C) 1995-2006, 2010, 2011, 2012, 2016, 2018 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  *
  * This interleaved implementation of a CRC makes use of pipelined multiple
index e33fccfd6d9aff5f2361ef8455f4461c76d851b2..75fb47425873940ebbdf0b2908e63f80aa70f9b2 100644 (file)
@@ -1,5 +1,5 @@
 /* crc32_braid_comb.c -- compute the CRC-32 of a data stream
- * Copyright (C) 1995-2006, 2010, 2011, 2012, 2016, 2018 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  *
  * This interleaved implementation of a CRC makes use of pipelined multiple
index 878033355cf3fa974c340bed4a463c6522618e20..986c5fddf630fdd6855769ac7c521f3efa86af52 100644 (file)
--- a/deflate.c
+++ b/deflate.c
@@ -1,5 +1,5 @@
 /* deflate.c -- compress data using the deflation algorithm
- * Copyright (C) 1995-2016 Jean-loup Gailly and Mark Adler
+ * Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
@@ -59,7 +59,7 @@
 # undef deflateInit2
 #endif
 
-const char PREFIX(deflate_copyright)[] = " deflate 1.2.11.f Copyright 1995-2016 Jean-loup Gailly and Mark Adler ";
+const char PREFIX(deflate_copyright)[] = " deflate 1.2.12.f Copyright 1995-2022 Jean-loup Gailly and Mark Adler ";
 /*
   If you use the zlib library in a product, an acknowledgment is welcome
   in the documentation of your product. If for some reason you cannot
index 7db7099088778f9857f9242e382bd9667c67e2a7..fe0927063976432c28d2c55bea077b3938fd4118 100644 (file)
--- a/gzguts.h
+++ b/gzguts.h
@@ -1,7 +1,7 @@
 #ifndef GZGUTS_H_
 #define GZGUTS_H_
 /* gzguts.h -- zlib internal header definitions for gz* operations
- * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler
+ * Copyright (C) 2004-2019 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
diff --git a/gzlib.c b/gzlib.c
index c19284035c14ab4f42818a7c9ab86ad84433d710..e1290fc611aa4ced73cae4ef126763d3e3b3e8c8 100644 (file)
--- a/gzlib.c
+++ b/gzlib.c
@@ -1,5 +1,5 @@
 /* gzlib.c -- zlib functions common to reading and writing gzip files
- * Copyright (C) 2004-2017 Mark Adler
+ * Copyright (C) 2004-2019 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index f17a5f8880109da0c55ea0dae746aa0b7dcf9761..c421f9f56f86ad8efaac7956ba86a27a4566ee75 100644 (file)
@@ -1,5 +1,5 @@
 /* gzread.c -- zlib functions for reading gzip files
- * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler
+ * Copyright (C) 2004-2017 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index b3e93e8d0821a4b505786c09f64c4390443ff90c..ba716bc20be54ffd9a8047abba79972bd92e7723 100644 (file)
--- a/gzwrite.c
+++ b/gzwrite.c
@@ -1,5 +1,5 @@
 /* gzwrite.c -- zlib functions for writing gzip files
- * Copyright (C) 2004-2017 Mark Adler
+ * Copyright (C) 2004-2019 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index dd549a89fb61525d0247d3cb3aea9f2081873d23..95798511f79f934211e4aa72c9d07c530f5b8f6a 100644 (file)
--- a/infback.c
+++ b/infback.c
@@ -1,5 +1,5 @@
 /* infback.c -- inflate using a call-back interface
- * Copyright (C) 1995-2016 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index 6192148233d593387a6bed5e27766a060a02965d..5f52dd140ada0cab7c6d7354d21651b93078077c 100644 (file)
--- a/inflate.c
+++ b/inflate.c
@@ -1,5 +1,5 @@
 /* inflate.c -- zlib decompression
- * Copyright (C) 1995-2016 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index 941e8b0a282c300f670bd02497c1f619a7819861..f9a7edd597fae142466df2aced439a298d78dccc 100644 (file)
--- a/inflate.h
+++ b/inflate.h
@@ -1,5 +1,5 @@
 /* inflate.h -- internal inflate state definition
- * Copyright (C) 1995-2016 Mark Adler
+ * Copyright (C) 1995-2019 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index eb82ff442754d0f26e527c5178b7699bfb949f1e..369fd09dfe44f6cb9ba16972529d1d560934cae1 100644 (file)
@@ -1,5 +1,5 @@
 /* inftrees.c -- generate Huffman trees for efficient decoding
- * Copyright (C) 1995-2016 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
@@ -9,7 +9,7 @@
 
 #define MAXBITS 15
 
-const char PREFIX(inflate_copyright)[] = " inflate 1.2.11.f Copyright 1995-2016 Mark Adler ";
+const char PREFIX(inflate_copyright)[] = " inflate 1.2.12.f Copyright 1995-2022 Mark Adler ";
 /*
   If you use the zlib library in a product, an acknowledgment is welcome
   in the documentation of your product. If for some reason you cannot
index 031c2a1b947e5124f27ece70e14b5fd337cb21c9..bb6274a1284fc8e94ce6ed7d917b3d2cce29f41e 100644 (file)
@@ -2,7 +2,7 @@
 #define INFTREES_H_
 
 /* inftrees.h -- header to use inftrees.c
- * Copyright (C) 1995-2005, 2010 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
index bfc2b96551cbc5c64ba215ee3249aefbac050fab..8ed0cf5cfd85595acddd1738c59d1b6143507eb1 100644 (file)
@@ -1,5 +1,5 @@
 /* makecrct.c -- output crc32 tables
- * Copyright (C) 1995-2006, 2010, 2011, 2012, 2016, 2018 Mark Adler
+ * Copyright (C) 1995-2022 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
 */
 
diff --git a/trees.c b/trees.c
index 7bc70075b51f0838ff8ce53e07201dfa6c15734b..111ead01ff5675b2b70a0d28cc3054025221c05f 100644 (file)
--- a/trees.c
+++ b/trees.c
@@ -1,5 +1,5 @@
 /* trees.c -- output deflated data using Huffman coding
- * Copyright (C) 1995-2017 Jean-loup Gailly
+ * Copyright (C) 1995-2021 Jean-loup Gailly
  * detect_data_type() function provided freely by Cosmin Truta, 2006
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
index 9de5e91b16d8d8c2b57628cd9ac6df13d9f32512..7e77a5bb7865460a525902bd03ad8a7cb0da8edf 100644 (file)
--- a/zlib.h.in
+++ b/zlib.h.in
@@ -1,9 +1,9 @@
 #ifndef ZLIB_H_
 #define ZLIB_H_
 /* zlib.h -- interface of the 'zlib-ng' compression library
-   Forked from and compatible with zlib 1.2.11
+   Forked from and compatible with zlib 1.2.12
 
-  Copyright (C) 1995-2016 Jean-loup Gailly and Mark Adler
+  Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
 
   This software is provided 'as-is', without any express or implied
   warranty.  In no event will the authors be held liable for any damages
@@ -57,11 +57,11 @@ extern "C" {
 #define ZLIBNG_VER_STATUS 0         /* 0=devel, 1-E=beta, F=Release */
 #define ZLIBNG_VER_MODIFIED 0       /* non-zero if modified externally from zlib-ng */
 
-#define ZLIB_VERSION "1.2.11.zlib-ng"
-#define ZLIB_VERNUM 0x12bf
+#define ZLIB_VERSION "1.2.12.zlib-ng"
+#define ZLIB_VERNUM 0x12cf
 #define ZLIB_VER_MAJOR 1
 #define ZLIB_VER_MINOR 2
-#define ZLIB_VER_REVISION 11
+#define ZLIB_VER_REVISION 12
 #define ZLIB_VER_SUBREVISION 0
 
 /*
diff --git a/zutil.h b/zutil.h
index 53c7cdf148e7e4e46e3d27b26b7467dbbec9c9c5..25716c5711f56458a385d39eab5e8bca0a189877 100644 (file)
--- a/zutil.h
+++ b/zutil.h
@@ -1,7 +1,7 @@
 #ifndef ZUTIL_H_
 #define ZUTIL_H_
 /* zutil.h -- internal interface and configuration of the compression library
- * Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler
+ * Copyright (C) 1995-2022 Jean-loup Gailly, Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */