Skip to content

Commit

Permalink
zlib 1.2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Sep 10, 2011
1 parent 7147f24 commit f4498be
Show file tree
Hide file tree
Showing 24 changed files with 122 additions and 73 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,6 +1,17 @@

ChangeLog file for zlib

Changes in 1.2.4.3 (10 Apr 2010)
- Only use CROSS_PREFIX in configure for ar and ranlib if they exist
- Use CROSS_PREFIX for nm [Bar-Lev]
- Assume _LARGEFILE64_SOURCE defined is equivalent to true
- Avoid use of undefined symbols in #if with && and ||
- Make *64 prototypes in gzguts.h consistent with functions
- Add -shared load option for MinGW in configure [Bowler]
- Move z_off64_t to public interface, use instead of off64_t
- Remove ! from shell test in configure (not portable to Solaris)
- Change +0 macro tests to -0 for possibly increased portability

Changes in 1.2.4.2 (9 Apr 2010)
- Add consistent carriage returns to readme.txt's in masmx86 and masmx64
- Really provide prototypes for *64 functions when building without LFS
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -32,7 +32,7 @@ CPP=$(CC) -E

STATICLIB=libz.a
SHAREDLIB=libz.so
SHAREDLIBV=libz.so.1.2.4.2
SHAREDLIBV=libz.so.1.2.4.3
SHAREDLIBM=libz.so.1
LIBS=$(STATICLIB) $(SHAREDLIBV)

Expand Down
4 changes: 2 additions & 2 deletions README
@@ -1,6 +1,6 @@
ZLIB DATA COMPRESSION LIBRARY

zlib 1.2.4.2 is a general purpose data compression library. All the code is
zlib 1.2.4.3 is a general purpose data compression library. All the code is
thread safe. The data format used by the zlib library is described by RFCs
(Request for Comments) 1950 to 1952 in the files
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
Expand Down Expand Up @@ -31,7 +31,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
issue of Dr. Dobb's Journal; a copy of the article is available at
http://marknelson.us/1997/01/01/zlib-engine/ .

The changes made in version 1.2.4.2 are documented in the file ChangeLog.
The changes made in version 1.2.4.3 are documented in the file ChangeLog.

Unsupported third party contributions are provided in directory contrib/ .

Expand Down
34 changes: 29 additions & 5 deletions configure
Expand Up @@ -13,11 +13,21 @@
# If you have problems, try without defining CC and CFLAGS before reporting
# an error.

# make sure we are running under a compatible shell (stolen from ffmpeg and libnfo)
# make sure we are running under a compatible shell (stolen from ffmpeg and libnfo,
# except their's wasn't portable enough due to ! usage, so this is better)
if test "0$ZLIB_CONFIGURE_EXEC" -lt 1; then
unset foo
(: ${foo%%bar}) 2>/dev/null && ! (: ${foo?}) 2>/dev/null
try=0
(: ${foo%%bar}) 2>/dev/null
if test "$?" -ne 0; then
try=1
else
(: ${foo?}) 2>/dev/null
if test "$?" -eq 0; then
try=1
fi
fi
if test "$try" -eq 1; then
ZLIB_CONFIGURE_EXEC=1
export ZLIB_CONFIGURE_EXEC
type "bash" > /dev/null 2>&1 && exec bash "$0" "$@"
Expand All @@ -29,6 +39,7 @@ if test "0$ZLIB_CONFIGURE_EXEC" -lt 1; then
# exit 1
# we could give up here, but go ahead and give their old sh a try
fi
unset try
fi

if [ -n "${CHOST}" ]; then
Expand All @@ -42,10 +53,22 @@ VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
VER3=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\\.[0-9]*\).*/\1/p' < zlib.h`
VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h`
VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
AR=${AR-"${CROSS_PREFIX}ar"}
if [ -x "${CROSS_PREFIX}ar" ]; then
AR=${AR-"${CROSS_PREFIX}ar"}
else
AR=${AR-"ar"}
fi
AR_RC="${AR} rc"
RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"}
NM=${NM-"nm"}
if [ -x "${CROSS_PREFIX}ranlib" ]; then
RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"}
else
RANLIB=${RANLIB-"ranlib"}
fi
if [ -x "${CROSS_PREFIX}nm" ]; then
NM=${NM-"${CROSS_PREFIX}nm"}
else
NM=${NM-"nm"}
fi
LDCONFIG=${LDCONFIG-"ldconfig"}
LDSHAREDLIBC="${LDSHAREDLIBC-"-lc"}"
prefix=${prefix-/usr/local}
Expand Down Expand Up @@ -121,6 +144,7 @@ if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then
CYGWIN* | Cygwin* | cygwin* | OS/2*)
EXE='.exe' ;;
MINGW*)
LDSHARED=${LDSHARED-"$cc -shared"}
LDSHAREDLIBC=""
EXE='.exe' ;;
QNX*) # This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4
Expand Down
2 changes: 1 addition & 1 deletion contrib/delphi/ZLib.pas
Expand Up @@ -152,7 +152,7 @@ procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
const OutBuf: Pointer; BufSize: Integer);

const
zlib_version = '1.2.4.2';
zlib_version = '1.2.4.3';

type
EZlibError = class(Exception);
Expand Down
4 changes: 2 additions & 2 deletions contrib/dotzlib/DotZLib/UnitTests.cs
Expand Up @@ -156,7 +156,7 @@ public class InfoTests
public void Info_Version()
{
Info info = new Info();
Assert.AreEqual("1.2.4.2", Info.Version);
Assert.AreEqual("1.2.4.3", Info.Version);
Assert.AreEqual(32, info.SizeOfUInt);
Assert.AreEqual(32, info.SizeOfULong);
Assert.AreEqual(32, info.SizeOfPointer);
Expand Down Expand Up @@ -271,4 +271,4 @@ public void GZipStream_WriteRead()
}
}

#endif
#endif
4 changes: 2 additions & 2 deletions contrib/infback9/inftree9.c
Expand Up @@ -9,7 +9,7 @@
#define MAXBITS 15

const char inflate9_copyright[] =
" inflate9 1.2.4.2 Copyright 1995-2010 Mark Adler ";
" inflate9 1.2.4.3 Copyright 1995-2010 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
Expand Down Expand Up @@ -64,7 +64,7 @@ unsigned short FAR *work;
static const unsigned short lext[31] = { /* Length codes 257..285 extra */
128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129,
130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132,
133, 133, 133, 133, 144, 202, 75};
133, 133, 133, 133, 144, 195, 66};
static const unsigned short dbase[32] = { /* Distance codes 0..31 base */
1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49,
65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073,
Expand Down
2 changes: 1 addition & 1 deletion contrib/pascal/zlibpas.pas
Expand Up @@ -10,7 +10,7 @@
interface

const
ZLIB_VERSION = '1.2.4.2';
ZLIB_VERSION = '1.2.4.3';

type
alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
Expand Down
6 changes: 3 additions & 3 deletions contrib/vstudio/vc10/zlib.rc
Expand Up @@ -2,8 +2,8 @@

#define IDR_VERSION1 1
IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
FILEVERSION 1,2,4,2
PRODUCTVERSION 1,2,4,2
FILEVERSION 1,2,4,3
PRODUCTVERSION 1,2,4,3
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS_DOS_WINDOWS32
Expand All @@ -17,7 +17,7 @@ BEGIN

BEGIN
VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0"
VALUE "FileVersion", "1.2.4.2\0"
VALUE "FileVersion", "1.2.4.3\0"
VALUE "InternalName", "zlib\0"
VALUE "OriginalFilename", "zlib.dll\0"
VALUE "ProductName", "ZLib.DLL\0"
Expand Down
6 changes: 3 additions & 3 deletions contrib/vstudio/vc9/zlib.rc
Expand Up @@ -2,8 +2,8 @@

#define IDR_VERSION1 1
IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
FILEVERSION 1,2,4,2
PRODUCTVERSION 1,2,4,2
FILEVERSION 1,2,4,3
PRODUCTVERSION 1,2,4,3
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS_DOS_WINDOWS32
Expand All @@ -17,7 +17,7 @@ BEGIN

BEGIN
VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0"
VALUE "FileVersion", "1.2.4.2\0"
VALUE "FileVersion", "1.2.4.3\0"
VALUE "InternalName", "zlib\0"
VALUE "OriginalFilename", "zlib.dll\0"
VALUE "ProductName", "ZLib.DLL\0"
Expand Down
2 changes: 1 addition & 1 deletion deflate.c
Expand Up @@ -52,7 +52,7 @@
#include "deflate.h"

const char deflate_copyright[] =
" deflate 1.2.4.2 Copyright 1995-2010 Jean-loup Gailly and Mark Adler ";
" deflate 1.2.4.3 Copyright 1995-2010 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
Expand Down
16 changes: 5 additions & 11 deletions gzguts.h
Expand Up @@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/

#if _LARGEFILE64_SOURCE
#ifdef _LARGEFILE64_SOURCE
# ifndef _LARGEFILE_SOURCE
# define _LARGEFILE_SOURCE 1
# endif
Expand Down Expand Up @@ -56,18 +56,12 @@
# endif
#endif

#if _LARGEFILE64_SOURCE
# define z_off64_t off64_t
#else
# define z_off64_t z_off_t
#endif

/* provide prototypes for these when building zlib without LFS */
#if _LARGEFILE64_SOURCE+0 != 1 || _LFS64_LARGEFILE+0 != 1
#if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0
ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, off_t, int));
ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
#endif

/* default i/o buffer size -- double this for output when reading */
Expand Down
2 changes: 1 addition & 1 deletion gzlib.c
Expand Up @@ -5,7 +5,7 @@

#include "gzguts.h"

#if _LARGEFILE64_SOURCE && _LFS64_LARGEFILE
#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
# define LSEEK lseek64
#else
# define LSEEK lseek
Expand Down
4 changes: 2 additions & 2 deletions inftrees.c
Expand Up @@ -9,7 +9,7 @@
#define MAXBITS 15

const char inflate_copyright[] =
" inflate 1.2.4.2 Copyright 1995-2010 Mark Adler ";
" inflate 1.2.4.3 Copyright 1995-2010 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
Expand Down Expand Up @@ -62,7 +62,7 @@ unsigned short FAR *work;
35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
static const unsigned short lext[31] = { /* Length codes 257..285 extra */
16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 202, 75};
19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 195, 66};
static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
Expand Down
2 changes: 1 addition & 1 deletion minigzip.c
Expand Up @@ -53,7 +53,7 @@
# include <unix.h> /* for fileno */
#endif

#if !defined(Z_HAVE_UNISTD_H) && _LARGEFILE64_SOURCE+0 != 1
#if !defined(Z_HAVE_UNISTD_H) && !defined(_LARGEFILE64_SOURCE)
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
extern int unlink OF((const char *));
#endif
Expand Down
10 changes: 5 additions & 5 deletions qnx/package.qpg
Expand Up @@ -25,10 +25,10 @@
<QPG:Files>
<QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/>
<QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/>
<QPG:Add file="../libz.so.1.2.4.2" install="/opt/lib/" user="root:bin" permission="644"/>
<QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.4.2"/>
<QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.4.2"/>
<QPG:Add file="../libz.so.1.2.4.2" install="/opt/lib/" component="slib"/>
<QPG:Add file="../libz.so.1.2.4.3" install="/opt/lib/" user="root:bin" permission="644"/>
<QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.4.3"/>
<QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.4.3"/>
<QPG:Add file="../libz.so.1.2.4.3" install="/opt/lib/" component="slib"/>
</QPG:Files>

<QPG:PackageFilter>
Expand Down Expand Up @@ -63,7 +63,7 @@
</QPM:ProductDescription>

<QPM:ReleaseDescription>
<QPM:ReleaseVersion>1.2.4.2</QPM:ReleaseVersion>
<QPM:ReleaseVersion>1.2.4.3</QPM:ReleaseVersion>
<QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
<QPM:ReleaseStability>Stable</QPM:ReleaseStability>
<QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor>
Expand Down
4 changes: 2 additions & 2 deletions treebuild.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" ?>
<package name="zlib" version="1.2.4.2">
<library name="zlib" dlversion="1.2.4.2" dlname="z">
<package name="zlib" version="1.2.4.3">
<library name="zlib" dlversion="1.2.4.3" dlname="z">
<property name="description"> zip compression library </property>
<property name="include-target-dir" value="$(@PACKAGE/install-includedir)" />

Expand Down
8 changes: 7 additions & 1 deletion zconf.h
Expand Up @@ -368,7 +368,7 @@ typedef uLong FAR uLongf;
# include <sys/types.h> /* for off_t */
#endif

#if defined(Z_HAVE_UNISTD_H) || _LARGEFILE64_SOURCE
#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
# include <unistd.h> /* for SEEK_* and off_t */
# ifdef VMS
# include <unixio.h> /* for off_t */
Expand All @@ -388,6 +388,12 @@ typedef uLong FAR uLongf;
# define z_off_t long
#endif

#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
# define z_off64_t off64_t
#else
# define z_off64_t z_off_t
#endif

#if defined(__OS400__)
# define NO_vsnprintf
#endif
Expand Down
8 changes: 7 additions & 1 deletion zconf.h.cmakein
Expand Up @@ -370,7 +370,7 @@ typedef uLong FAR uLongf;
# include <sys/types.h> /* for off_t */
#endif

#if defined(Z_HAVE_UNISTD_H) || _LARGEFILE64_SOURCE
#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
# include <unistd.h> /* for SEEK_* and off_t */
# ifdef VMS
# include <unixio.h> /* for off_t */
Expand All @@ -390,6 +390,12 @@ typedef uLong FAR uLongf;
# define z_off_t long
#endif

#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
# define z_off64_t off64_t
#else
# define z_off64_t z_off_t
#endif

#if defined(__OS400__)
# define NO_vsnprintf
#endif
Expand Down
8 changes: 7 additions & 1 deletion zconf.h.in
Expand Up @@ -368,7 +368,7 @@ typedef uLong FAR uLongf;
# include <sys/types.h> /* for off_t */
#endif

#if defined(Z_HAVE_UNISTD_H) || _LARGEFILE64_SOURCE
#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
# include <unistd.h> /* for SEEK_* and off_t */
# ifdef VMS
# include <unixio.h> /* for off_t */
Expand All @@ -388,6 +388,12 @@ typedef uLong FAR uLongf;
# define z_off_t long
#endif

#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
# define z_off64_t off64_t
#else
# define z_off64_t z_off_t
#endif

#if defined(__OS400__)
# define NO_vsnprintf
#endif
Expand Down
4 changes: 2 additions & 2 deletions zlib.3
@@ -1,4 +1,4 @@
.TH ZLIB 3 "9 Apr 2010"
.TH ZLIB 3 "10 Apr 2010"
.SH NAME
zlib \- compression/decompression library
.SH SYNOPSIS
Expand Down Expand Up @@ -125,7 +125,7 @@ before asking for help.
Send questions and/or comments to zlib@gzip.org,
or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
.SH AUTHORS
Version 1.2.4.2
Version 1.2.4.3
Copyright (C) 1995-2010 Jean-loup Gailly (jloup@gzip.org)
and Mark Adler (madler@alumni.caltech.edu).
.LP
Expand Down
Binary file modified zlib.3.pdf
Binary file not shown.

0 comments on commit f4498be

Please sign in to comment.