diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-02-12 14:11:48 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-02-12 14:20:33 -0800 |
commit | 94acb3c1a0fbd14482224d6af3699ddb9e163510 (patch) | |
tree | 30d1123bc8280cae5bfb2a5301eb8201587ff714 | |
parent | 75143f819f14428f114ef69980af69071d65cbf9 (diff) | |
download | zlib-1.2.6.1.tar.gz zlib-1.2.6.1.tar.bz2 zlib-1.2.6.1.zip |
zlib 1.2.6.1v1.2.6.1
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | crc32.c | 2 | ||||
-rw-r--r-- | gzread.c | 2 | ||||
-rw-r--r-- | inflate.c | 2 | ||||
-rw-r--r-- | zconf.h | 2 | ||||
-rw-r--r-- | zconf.h.cmakein | 2 | ||||
-rw-r--r-- | zconf.h.in | 2 | ||||
-rw-r--r-- | zlib.3 | 2 | ||||
-rw-r--r-- | zlib.3.pdf | bin | 8729 -> 8730 bytes | |||
-rw-r--r-- | zlib.h | 4 | ||||
-rw-r--r-- | zutil.c | 2 | ||||
-rw-r--r-- | zutil.h | 4 |
12 files changed, 25 insertions, 14 deletions
@@ -1,8 +1,19 @@ | |||
1 | 1 | ||
2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
3 | 3 | ||
4 | Changes in 1.2.6.1 (xx Jan 2012) | 4 | Changes in 1.2.6.1 (12 Feb 2012) |
5 | - | 5 | - Avoid the use of the Objective-C reserved name "id" |
6 | - Include io.h in gzguts.h for Microsoft compilers | ||
7 | - Fix problem with ./configure --prefix and gzgetc macro | ||
8 | - Include gz_header definition when compiling zlib solo | ||
9 | - Put gzflags() functionality back in zutil.c | ||
10 | - Avoid library header include in crc32.c for Z_SOLO | ||
11 | - Use name in GCC_CLASSIC as C compiler for coverage testing, if set | ||
12 | - Minor cleanup in contrib/minizip/zip.c [Vollant] | ||
13 | - Update make_vms.com [Zinser] | ||
14 | - Remove unnecessary gzgetc_ function | ||
15 | - Use optimized byte swap operations for Microsoft and GNU [Snyder] | ||
16 | - Fix minor typo in zlib.h comments [Rzesniowiecki] | ||
6 | 17 | ||
7 | Changes in 1.2.6 (29 Jan 2012) | 18 | Changes in 1.2.6 (29 Jan 2012) |
8 | - Update the Pascal interface in contrib/pascal | 19 | - Update the Pascal interface in contrib/pascal |
@@ -1,5 +1,5 @@ | |||
1 | /* crc32.c -- compute the CRC-32 of a data stream | 1 | /* crc32.c -- compute the CRC-32 of a data stream |
2 | * Copyright (C) 1995-2006, 2010, 2011 Mark Adler | 2 | * Copyright (C) 1995-2006, 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 | * Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster | 5 | * Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster |
@@ -1,5 +1,5 @@ | |||
1 | /* gzread.c -- zlib functions for reading gzip files | 1 | /* gzread.c -- zlib functions for reading 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 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* inflate.c -- zlib decompression | 1 | /* inflate.c -- zlib decompression |
2 | * Copyright (C) 1995-2011 Mark Adler | 2 | * Copyright (C) 1995-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 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* zconf.h -- configuration of the zlib compression library | 1 | /* zconf.h -- configuration of the zlib compression library |
2 | * Copyright (C) 1995-2011 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2012 Jean-loup Gailly. |
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/zconf.h.cmakein b/zconf.h.cmakein index c299fb1..9510eab 100644 --- a/zconf.h.cmakein +++ b/zconf.h.cmakein | |||
@@ -1,5 +1,5 @@ | |||
1 | /* zconf.h -- configuration of the zlib compression library | 1 | /* zconf.h -- configuration of the zlib compression library |
2 | * Copyright (C) 1995-2011 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2012 Jean-loup Gailly. |
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 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* zconf.h -- configuration of the zlib compression library | 1 | /* zconf.h -- configuration of the zlib compression library |
2 | * Copyright (C) 1995-2011 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2012 Jean-loup Gailly. |
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 | ||
@@ -1,4 +1,4 @@ | |||
1 | .TH ZLIB 3 "xx Jan 2012" | 1 | .TH ZLIB 3 "12 Feb 2012" |
2 | .SH NAME | 2 | .SH NAME |
3 | zlib \- compression/decompression library | 3 | zlib \- compression/decompression library |
4 | .SH SYNOPSIS | 4 | .SH SYNOPSIS |
Binary files differ | |||
@@ -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.1, January xxth, 2012 | 2 | version 1.2.6.1, February 12th, 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 @@ | |||
37 | extern "C" { | 37 | extern "C" { |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #define ZLIB_VERSION "1.2.6.1-motley" | 40 | #define ZLIB_VERSION "1.2.6.1" |
41 | #define ZLIB_VERNUM 0x1261 | 41 | #define ZLIB_VERNUM 0x1261 |
42 | #define ZLIB_VER_MAJOR 1 | 42 | #define ZLIB_VER_MAJOR 1 |
43 | #define ZLIB_VER_MINOR 2 | 43 | #define ZLIB_VER_MINOR 2 |
@@ -1,5 +1,5 @@ | |||
1 | /* zutil.c -- target dependent utility functions for the compression library | 1 | /* zutil.c -- target dependent utility functions for the compression library |
2 | * Copyright (C) 1995-2005, 2010, 2011 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly. |
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 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* zutil.h -- internal interface and configuration of the compression library | 1 | /* zutil.h -- internal interface and configuration of the compression library |
2 | * Copyright (C) 1995-2011 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2012 Jean-loup Gailly. |
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 | ||
@@ -255,7 +255,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ | |||
255 | # define ZSWAP32(q) __builtin_bswap32(q) | 255 | # define ZSWAP32(q) __builtin_bswap32(q) |
256 | #else | 256 | #else |
257 | # define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ | 257 | # define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ |
258 | (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) | 258 | (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) |
259 | #endif | 259 | #endif |
260 | 260 | ||
261 | #endif /* ZUTIL_H */ | 261 | #endif /* ZUTIL_H */ |