summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2012-01-29 10:13:15 -0800
committerMark Adler <madler@alumni.caltech.edu>2012-01-29 10:13:15 -0800
commite75de023b6cd7177c8e44ef1c72b74f5efde5418 (patch)
tree725f79919ddf30d6aec17373760b57977590dc75
parent68a02240a6aa2b487ebebc322d8e0658b209e938 (diff)
downloadzlib-1.2.6.tar.gz
zlib-1.2.6.tar.bz2
zlib-1.2.6.zip
zlib 1.2.6v1.2.6
-rw-r--r--ChangeLog28
-rw-r--r--gzguts.h2
-rw-r--r--gzwrite.c2
-rw-r--r--zlib.32
-rw-r--r--zlib.3.pdfbin8735 -> 8735 bytes
-rw-r--r--zlib.h4
6 files changed, 31 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 198e55f..6fa5d44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,32 @@
1 1
2 ChangeLog file for zlib 2 ChangeLog file for zlib
3 3
4Changes in 1.2.6 (xx Jan 2012) 4Changes in 1.2.6 (29 Jan 2012)
5- 5- Update the Pascal interface in contrib/pascal
6- Fix function numbers for gzgetc_ in zlibvc.def files
7- Fix configure.ac for contrib/minizip [Schiffer]
8- Fix large-entry detection in minizip on 64-bit systems [Schiffer]
9- Have ./configure use the compiler return code for error indication
10- Fix CMakeLists.txt for cross compilation [McClure]
11- Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes]
12- Fix compilation of contrib/minizip on FreeBSD [Marquez]
13- Correct suggested usages in win32/Makefile.msc [Shachar, Horvath]
14- Include io.h for Turbo C / Borland C on all platforms [Truta]
15- Make version explicit in contrib/minizip/configure.ac [Bosmans]
16- Avoid warning for no encryption in contrib/minizip/zip.c [Vollant]
17- Minor cleanup up contrib/minizip/unzip.c [Vollant]
18- Fix bug when compiling minizip with C++ [Vollant]
19- Protect for long name and extra fields in contrib/minizip [Vollant]
20- Avoid some warnings in contrib/minizip [Vollant]
21- Add -I../.. -L../.. to CFLAGS for minizip and miniunzip
22- Add missing libs to minizip linker command
23- Add support for VPATH builds in contrib/minizip
24- Add an --enable-demos option to contrib/minizip/configure
25- Add the generation of configure.log by ./configure
26- Exit when required parameters not provided to win32/Makefile.gcc
27- Have gzputc return the character written instead of the argument
28- Use the -m option on ldconfig for BSD systems [Tobias]
29- Correct in zlib.map when deflateResetKeep was added
6 30
7Changes in 1.2.5.3 (15 Jan 2012) 31Changes in 1.2.5.3 (15 Jan 2012)
8- Restore gzgetc function for binary compatibility 32- Restore gzgetc function for binary compatibility
diff --git a/gzguts.h b/gzguts.h
index 48bd98f..3107c36 100644
--- a/gzguts.h
+++ b/gzguts.h
@@ -1,5 +1,5 @@
1/* gzguts.h -- zlib internal header definitions for gz* operations 1/* gzguts.h -- zlib internal header definitions for gz* operations
2 * Copyright (C) 2004, 2005, 2010, 2011 Mark Adler 2 * Copyright (C) 2004, 2005, 2010, 2011, 2012 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
diff --git a/gzwrite.c b/gzwrite.c
index c48c906..caa35b6 100644
--- a/gzwrite.c
+++ b/gzwrite.c
@@ -1,5 +1,5 @@
1/* gzwrite.c -- zlib functions for writing gzip files 1/* gzwrite.c -- zlib functions for writing gzip files
2 * Copyright (C) 2004, 2005, 2010, 2011 Mark Adler 2 * Copyright (C) 2004, 2005, 2010, 2011, 2012 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
diff --git a/zlib.3 b/zlib.3
index d6b0b08..d051c79 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "xx Jan 2012" 1.TH ZLIB 3 "29 Jan 2012"
2.SH NAME 2.SH NAME
3zlib \- compression/decompression library 3zlib \- compression/decompression library
4.SH SYNOPSIS 4.SH SYNOPSIS
diff --git a/zlib.3.pdf b/zlib.3.pdf
index 7ac376d..ffa2a78 100644
--- a/zlib.3.pdf
+++ b/zlib.3.pdf
Binary files differ
diff --git a/zlib.h b/zlib.h
index 9452fee..79142d1 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
1/* zlib.h -- interface of the 'zlib' general purpose compression library 1/* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 1.2.6, January xxth, 2012 2 version 1.2.6, January 29th, 2012
3 3
4 Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler
5 5
@@ -37,7 +37,7 @@
37extern "C" { 37extern "C" {
38#endif 38#endif
39 39
40#define ZLIB_VERSION "1.2.6-motley" 40#define ZLIB_VERSION "1.2.6"
41#define ZLIB_VERNUM 0x1260 41#define ZLIB_VERNUM 0x1260
42#define ZLIB_VER_MAJOR 1 42#define ZLIB_VER_MAJOR 1
43#define ZLIB_VER_MINOR 2 43#define ZLIB_VER_MINOR 2