summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2012-05-02 20:32:41 -0700
committerMark Adler <madler@alumni.caltech.edu>2012-05-02 21:12:35 -0700
commit30a1c7065dc1dc2c2ed68ed403792b660bfdd805 (patch)
treec8a2eccd43b13b00f5552c8a56500a08c37f6dd1
parent1b09651f8983927f37512e4b63198cb10c3fba05 (diff)
downloadzlib-1.2.7.tar.gz
zlib-1.2.7.tar.bz2
zlib-1.2.7.zip
zlib 1.2.7v1.2.7
-rw-r--r--ChangeLog49
-rw-r--r--zlib.32
-rw-r--r--zlib.3.pdfbin8737 -> 8760 bytes
-rw-r--r--zlib.h4
4 files changed, 50 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c0d164..c2c643a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,53 @@
1 1
2 ChangeLog file for zlib 2 ChangeLog file for zlib
3 3
4Changes in 1.2.7 (xx Feb 2012) 4Changes in 1.2.7 (2 May 2012)
5- 5- Replace use of memmove() with a simple copy for portability
6- Test for existence of strerror
7- Restore gzgetc_ for backward compatibility with 1.2.6
8- Fix build with non-GNU make on Solaris
9- Require gcc 4.0 or later on Mac OS X to use the hidden attribute
10- Include unistd.h for Watcom C
11- Use __WATCOMC__ instead of __WATCOM__
12- Do not use the visibility attribute if NO_VIZ defined
13- Improve the detection of no hidden visibility attribute
14- Avoid using __int64 for gcc or solo compilation
15- Cast to char * in gzprintf to avoid warnings [Zinser]
16- Fix make_vms.com for VAX [Zinser]
17- Don't use library or built-in byte swaps
18- Simplify test and use of gcc hidden attribute
19- Fix bug in gzclose_w() when gzwrite() fails to allocate memory
20- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen()
21- Fix bug in test/minigzip.c for configure --solo
22- Fix contrib/vstudio project link errors [Mohanathas]
23- Add ability to choose the builder in make_vms.com [Schweda]
24- Add DESTDIR support to mingw32 win32/Makefile.gcc
25- Fix comments in win32/Makefile.gcc for proper usage
26- Allow overriding the default install locations for cmake
27- Generate and install the pkg-config file with cmake
28- Build both a static and a shared version of zlib with cmake
29- Include version symbols for cmake builds
30- If using cmake with MSVC, add the source directory to the includes
31- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta]
32- Move obsolete emx makefile to old [Truta]
33- Allow the use of -Wundef when compiling or using zlib
34- Avoid the use of the -u option with mktemp
35- Improve inflate() documentation on the use of Z_FINISH
36- Recognize clang as gcc
37- Add gzopen_w() in Windows for wide character path names
38- Rename zconf.h in CMakeLists.txt to move it out of the way
39- Add source directory in CMakeLists.txt for building examples
40- Look in build directory for zlib.pc in CMakeLists.txt
41- Remove gzflags from zlibvc.def in vc9 and vc10
42- Fix contrib/minizip compilation in the MinGW environment
43- Update ./configure for Solaris, support --64 [Mooney]
44- Remove -R. from Solaris shared build (possible security issue)
45- Avoid race condition for parallel make (-j) running example
46- Fix type mismatch between get_crc_table() and crc_table
47- Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler]
48- Fix the path to zlib.map in CMakeLists.txt
49- Force the native libtool in Mac OS X to avoid GNU libtool [Beebe]
50- Add instructions to win32/Makefile.gcc for shared install [Torri]
6 51
7Changes in 1.2.6.1 (12 Feb 2012) 52Changes in 1.2.6.1 (12 Feb 2012)
8- Avoid the use of the Objective-C reserved name "id" 53- Avoid the use of the Objective-C reserved name "id"
diff --git a/zlib.3 b/zlib.3
index c6bd567..79d3402 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "xx Feb 2012" 1.TH ZLIB 3 "2 May 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 7ef1ee1..485306c 100644
--- a/zlib.3.pdf
+++ b/zlib.3.pdf
Binary files differ
diff --git a/zlib.h b/zlib.h
index edc19f8..3edf3ac 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.7, February xxth, 2012 2 version 1.2.7, May 2nd, 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.7-motley" 40#define ZLIB_VERSION "1.2.7"
41#define ZLIB_VERNUM 0x1270 41#define ZLIB_VERNUM 0x1270
42#define ZLIB_VER_MAJOR 1 42#define ZLIB_VER_MAJOR 1
43#define ZLIB_VER_MINOR 2 43#define ZLIB_VER_MINOR 2