Skip to content

Commit 8de7e52

Browse files
author
Apple
committed
zlib-70
1 parent e9848c2 commit 8de7e52

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+9146
-1381
lines changed

NMakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ bits=32
77
!endif
88

99
name=zlib
10-
project=$(name)-1.2.8
10+
project=$(name)-1.2.11
1111
bin_dir=bin$(bits)
1212
lib_dir=lib$(bits)
1313
sym_dir=public$(bits)\sym

libz.exp

+7
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,11 @@ _deflateResetKeep
6868
_gzgetc_
6969
_inflateResetKeep
7070
_inflateGetDictionary
71+
_deflateGetDictionary
7172
_gzvprintf
73+
_adler32_z
74+
_crc32_z
75+
_gzfread
76+
_gzfwrite
77+
_uncompress2
78+
_inflateValidate

zlib-1.2.11.tar.gz

593 KB
Binary file not shown.

zlib-1.2.8.tar.xz

-440 KB
Binary file not shown.

zlib.plist

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@
33
<key>OpenSourceProject</key>
44
<string>zlib</string>
55
<key>OpenSourceVersion</key>
6-
<string>1.2.8</string>
6+
<string>1.2.11</string>
77
<key>OpenSourceWebsiteURL</key>
88
<string>http://www.zlib.net/</string>
99
<key>OpenSourceURL</key>
10-
<string>http://zlib.net/zlib-1.2.8.tar.xz</string>
10+
<string>http://zlib.net/zlib-1.2.11.tar.gz</string>
1111
<key>OpenSourceMD5</key>
12-
<string>28f1205d8dd2001f26fec1e8c2cebe37</string>
12+
<string>1c9f62f0778697a09d36121ead88e08e</string>
1313
<key>OpenSourceImportDate</key>
14-
<string>2013-09-19</string>
14+
<string>2017-06-07</string>
1515
<key>OpenSourceModifications</key>
1616
<array>
1717
<string>Minor changes to configure script.</string>
18-
<string>compress2(): fail under LP64 if source &gt; 4GB</string>
1918
</array>
2019
<key>OpenSourceLicense</key>
2120
<string>other</string>

zlib.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
66
CODE_SIGN_IDENTITY = -
77
INSTALL_PATH = /usr/lib
88
DYLIB_COMPATIBILITY_VERSION = 1
9-
DYLIB_CURRENT_VERSION = 1.2.5
9+
DYLIB_CURRENT_VERSION = 1.2.11
1010
DEAD_CODE_STRIPPING = YES
1111
EXPORTED_SYMBOLS_FILE = libz.exp
1212
EXECUTABLE_PREFIX = lib

zlib.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
);
206206
runOnlyForDeploymentPostprocessing = 1;
207207
shellPath = /bin/sh;
208-
shellScript = "set -x\nDSTROOT=\"$DSTROOT$INSTALL_PATH_PREFIX\"\nmkdir -p \"$DSTROOT\"/usr/share/man/man3 \"$DSTROOT\"/usr/local/{OpenSourceLicenses,OpenSourceVersions} \"$DSTROOT\"/usr/include\ninstall -g \"$INSTALL_GROUP\" -o \"$INSTALL_OWNER\" -m \"$INSTALL_MODE_FLAG\" zlib/zlib.3 \"$DSTROOT\"/usr/share/man/man3\n\ninstall -g \"$INSTALL_GROUP\" -o \"$INSTALL_OWNER\" -m \"$INSTALL_MODE_FLAG\" zlib.plist \"$DSTROOT\"/usr/local/OpenSourceVersions\ngrep -A 1073741824 Copyright zlib/README >\"$DSTROOT\"/usr/local/OpenSourceLicenses/zlib.txt\nchmod -R -w \"$DSTROOT\"/usr/local/Open*/zlib.*\n\nfor l in libz.1.1.3.dylib libz.1.2.5.dylib libz.1.2.8.dylib libz.dylib; do\n echo l: $l\n ln -s ${EXECUTABLE_NAME} \"$DSTROOT\"/usr/lib/$l\ndone\n";
208+
shellScript = "set -x\nDSTROOT=\"$DSTROOT$INSTALL_PATH_PREFIX\"\nmkdir -p \"$DSTROOT\"/usr/share/man/man3 \"$DSTROOT\"/usr/local/{OpenSourceLicenses,OpenSourceVersions} \"$DSTROOT\"/usr/include\ninstall -g \"$INSTALL_GROUP\" -o \"$INSTALL_OWNER\" -m \"$INSTALL_MODE_FLAG\" zlib/zlib.3 \"$DSTROOT\"/usr/share/man/man3\n\ninstall -g \"$INSTALL_GROUP\" -o \"$INSTALL_OWNER\" -m \"$INSTALL_MODE_FLAG\" zlib.plist \"$DSTROOT\"/usr/local/OpenSourceVersions\ngrep -A 1073741824 Copyright zlib/README >\"$DSTROOT\"/usr/local/OpenSourceLicenses/zlib.txt\nchmod -R -w \"$DSTROOT\"/usr/local/Open*/zlib.*\n\nfor l in libz.1.1.3.dylib libz.1.2.5.dylib libz.1.2.8.dylib libz.1.2.11.dylib libz.dylib; do\n echo l: $l\n ln -s ${EXECUTABLE_NAME} \"$DSTROOT\"/usr/lib/$l\ndone\n\nTBD_UPPER=`echo ${GENERATE_TEXT_BASED_STUBS} | tr a-z A-Z`\nif [ ${TBD_UPPER} = \"YES\" ] || [ ${TBD_UPPER} = \"TRUE\" ] || [ ${TBD_UPPER} = \"1\" ]; then\n GENERATE_TBD=1\nfi\n\nif [ ${GENERATE_TBD} ]; then\n for l in libz.1.1.3.tbd libz.1.2.5.tbd libz.1.2.8.tbd libz.1.2.11.tbd libz.tbd; do\n echo l: $l\n ln -s $EXECUTABLE_PREFIX$PRODUCT_NAME.tbd \"$DSTROOT\"/usr/lib/$l\n done\nfi";
209209
};
210210
/* End PBXShellScriptBuildPhase section */
211211

@@ -239,7 +239,7 @@
239239
isa = XCBuildConfiguration;
240240
baseConfigurationReference = 814E93D1185D7A3A009656FB /* zlib.xcconfig */;
241241
buildSettings = {
242-
DYLIB_CURRENT_VERSION = 1.2.8;
242+
DYLIB_CURRENT_VERSION = 1.2.11;
243243
STRIP_STYLE = "non-global";
244244
WARNING_CFLAGS = "-Werror=declaration-after-statement";
245245
};

zlib/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS ON)
33

44
project(zlib C)
55

6-
set(VERSION "1.2.8")
6+
set(VERSION "1.2.11")
77

88
option(ASM686 "Enable building i686 assembly implementation")
99
option(AMD64 "Enable building amd64 assembly implementation")

zlib/ChangeLog

+49-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,53 @@
11

22
ChangeLog file for zlib
33

4+
Changes in 1.2.11 (15 Jan 2017)
5+
- Fix deflate stored bug when pulling last block from window
6+
- Permit immediate deflateParams changes before any deflate input
7+
8+
Changes in 1.2.10 (2 Jan 2017)
9+
- Avoid warnings on snprintf() return value
10+
- Fix bug in deflate_stored() for zero-length input
11+
- Fix bug in gzwrite.c that produced corrupt gzip files
12+
- Remove files to be installed before copying them in Makefile.in
13+
- Add warnings when compiling with assembler code
14+
15+
Changes in 1.2.9 (31 Dec 2016)
16+
- Fix contrib/minizip to permit unzipping with desktop API [Zouzou]
17+
- Improve contrib/blast to return unused bytes
18+
- Assure that gzoffset() is correct when appending
19+
- Improve compress() and uncompress() to support large lengths
20+
- Fix bug in test/example.c where error code not saved
21+
- Remedy Coverity warning [Randers-Pehrson]
22+
- Improve speed of gzprintf() in transparent mode
23+
- Fix inflateInit2() bug when windowBits is 16 or 32
24+
- Change DEBUG macro to ZLIB_DEBUG
25+
- Avoid uninitialized access by gzclose_w()
26+
- Allow building zlib outside of the source directory
27+
- Fix bug that accepted invalid zlib header when windowBits is zero
28+
- Fix gzseek() problem on MinGW due to buggy _lseeki64 there
29+
- Loop on write() calls in gzwrite.c in case of non-blocking I/O
30+
- Add --warn (-w) option to ./configure for more compiler warnings
31+
- Reject a window size of 256 bytes if not using the zlib wrapper
32+
- Fix bug when level 0 used with Z_HUFFMAN or Z_RLE
33+
- Add --debug (-d) option to ./configure to define ZLIB_DEBUG
34+
- Fix bugs in creating a very large gzip header
35+
- Add uncompress2() function, which returns the input size used
36+
- Assure that deflateParams() will not switch functions mid-block
37+
- Dramatically speed up deflation for level 0 (storing)
38+
- Add gzfread(), duplicating the interface of fread()
39+
- Add gzfwrite(), duplicating the interface of fwrite()
40+
- Add deflateGetDictionary() function
41+
- Use snprintf() for later versions of Microsoft C
42+
- Fix *Init macros to use z_ prefix when requested
43+
- Replace as400 with os400 for OS/400 support [Monnerat]
44+
- Add crc32_z() and adler32_z() functions with size_t lengths
45+
- Update Visual Studio project files [AraHaan]
46+
447
Changes in 1.2.8 (28 Apr 2013)
548
- Update contrib/minizip/iowin32.c for Windows RT [Vollant]
649
- Do not force Z_CONST for C++
7-
- Clean up contrib/vstudio [Ro�]
50+
- Clean up contrib/vstudio [Roß]
851
- Correct spelling error in zlib.h
952
- Fix mixed line endings in contrib/vstudio
1053

@@ -34,7 +77,7 @@ Changes in 1.2.7.1 (24 Mar 2013)
3477
- Clean up the usage of z_const and respect const usage within zlib
3578
- Clean up examples/gzlog.[ch] comparisons of different types
3679
- Avoid shift equal to bits in type (caused endless loop)
37-
- Fix unintialized value bug in gzputc() introduced by const patches
80+
- Fix uninitialized value bug in gzputc() introduced by const patches
3881
- Fix memory allocation error in examples/zran.c [Nor]
3982
- Fix bug where gzopen(), gzclose() would write an empty file
4083
- Fix bug in gzclose() when gzwrite() runs out of memory
@@ -194,7 +237,7 @@ Changes in 1.2.5.2 (17 Dec 2011)
194237
- Add a transparent write mode to gzopen() when 'T' is in the mode
195238
- Update python link in zlib man page
196239
- Get inffixed.h and MAKEFIXED result to match
197-
- Add a ./config --solo option to make zlib subset with no libary use
240+
- Add a ./config --solo option to make zlib subset with no library use
198241
- Add undocumented inflateResetKeep() function for CAB file decoding
199242
- Add --cover option to ./configure for gcc coverage testing
200243
- Add #define ZLIB_CONST option to use const in the z_stream interface
@@ -564,7 +607,7 @@ Changes in 1.2.3.1 (16 August 2006)
564607
- Update make_vms.com [Zinser]
565608
- Use -fPIC for shared build in configure [Teredesai, Nicholson]
566609
- Use only major version number for libz.so on IRIX and OSF1 [Reinholdtsen]
567-
- Use fdopen() (not _fdopen()) for Interix in zutil.h [B�ck]
610+
- Use fdopen() (not _fdopen()) for Interix in zutil.h [Bäck]
568611
- Add some FAQ entries about the contrib directory
569612
- Update the MVS question in the FAQ
570613
- Avoid extraneous reads after EOF in gzio.c [Brown]
@@ -1178,7 +1221,7 @@ Changes in 1.0.6 (19 Jan 1998)
11781221
386 asm code replacing longest_match().
11791222
contrib/iostream/ by Kevin Ruland <[email protected]>
11801223
A C++ I/O streams interface to the zlib gz* functions
1181-
contrib/iostream2/ by Tyge L�vset <[email protected]>
1224+
contrib/iostream2/ by Tyge Løvset <[email protected]>
11821225
Another C++ I/O streams interface
11831226
contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <[email protected]>
11841227
A very simple tar.gz file extractor using zlib
@@ -1267,7 +1310,7 @@ Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
12671310
- fix array overlay in deflate.c which sometimes caused bad compressed data
12681311
- fix inflate bug with empty stored block
12691312
- fix MSDOS medium model which was broken in 0.99
1270-
- fix deflateParams() which could generated bad compressed data.
1313+
- fix deflateParams() which could generate bad compressed data.
12711314
- Bytef is define'd instead of typedef'ed (work around Borland bug)
12721315
- added an INDEX file
12731316
- new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),

0 commit comments

Comments
 (0)