]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
zlib 1.2.0.3 v1.2.0.3
authorMark Adler <madler@alumni.caltech.edu>
Sat, 10 Sep 2011 06:22:21 +0000 (23:22 -0700)
committerMark Adler <madler@alumni.caltech.edu>
Sat, 10 Sep 2011 06:22:21 +0000 (23:22 -0700)
21 files changed:
ChangeLog
FAQ
Makefile
Makefile.in
README
contrib/minizip/unzip.c
contrib/minizip/zconf.h [deleted file]
contrib/testzlib/testzlib.vcproj
contrib/vstudio/vc15_16/zlib16.mak
contrib/vstudio/vc70_32/miniunz.vcproj
contrib/vstudio/vc70_32/minizip.vcproj
contrib/vstudio/vc70_32/zlibstat.vcproj
contrib/vstudio/vc70_32/zlibvc.vcproj
deflate.c
example.c
gzio.c
inftrees.c
zconf.h
zconf.in.h
zlib.3
zlib.h

index af4a65591fca99dca0aeee74f063f36874f98fe2..18af4cbd3764793cf04a70ffca8a871e21165d35 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 
                 ChangeLog file for zlib
+Changes in 1.2.0.3 (19 July 2003)
+- Fix silly error in gzungetc() implementation [Vollant]
+- Update contrib/minizip and contrib/vstudio [Vollant]
+- Fix printf format in example.c
+- Correct cdecl support in zconf.in.h [Anisimkov]
+- Minor FAQ updates
+
 Changes in 1.2.0.2 (13 July 2003)
 - Add ZLIB_VERNUM in zlib.h for numerical preprocessor comparisons
 - Attempt to avoid warnings in crc32.c for pointer-int conversion
@@ -31,8 +38,8 @@ Changes in 1.2.0.2 (13 July 2003)
     - Report 2 only for level == 6
 - Only deal with 64K limit when necessary at compile time [Truta]
 - Allow TOO_FAR check to be turned off at compile time [Truta]
-- Added gzclearerr() function [Souza]
-- Added gzungetc() function
+- Add gzclearerr() function [Souza]
+- Add gzungetc() function
 
 Changes in 1.2.0.1 (17 March 2003)
 - Add Z_RLE strategy for run-length encoding [Truta]
diff --git a/FAQ b/FAQ
index b439bd942fef0a6e92b913ef6835ea0acee17883..c87759c16938082321af93bd6f21eb0d850949a2 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -20,7 +20,7 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
  3. Where can I get a Visual Basic interface to zlib?
 
     See
-        * http://www.winimage.com/zLibDll/cmp-z-it.zip
+        * http://www.winimage.com/zLibDll/
         * http://www.dogma.net/markn/articles/zlibtool/zlibtool.htm
         * contrib/visual-basic.txt in the zlib distribution
 
@@ -147,11 +147,14 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
 22. The license says that altered source versions must be "plainly marked". So
     what exactly do I need to do to meet that requirement?
 
-    You need to append something the ZLIB_VERSION string in zlib.h. For
-    example, if the version of the base zlib you are altering is "1.2.3", then
-    you could change the string to "1.2.3-fred-mods-v3". You should not change
-    it to "1.2.4" or "1.2.3.1" since the zlib authors would like to reserve
-    those forms of the version for their own use.
+    You need to change the ZLIB_VERSION and ZLIB_VERNUM #defines in zlib.h. In
+    particular, the final version number needs to be changed to "f", and an
+    identification string should be appended to ZLIB_VERSION. Version numbers
+    x.x.x.f are reserved for modifications to zlib by others than the zlib
+    maintainers. For example, if the version of the base zlib you are altering
+    is "1.2.3.4", then in zlib.h you should change ZLIB_VERNUM to 0x123f, and
+    ZLIB_VERSION to something like "1.2.3.f-zachary-mods-v3". You can also
+    update the version strings in deflate.c and inftrees.c.
 
     For altered source distributions, you should also note the origin and
     nature of the changes in zlib.h, as well as in ChangeLog and README, along
@@ -161,8 +164,8 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
 
     Note that distributing a compiled zlib library along with zlib.h and
     zconf.h is also a source distribution, and so you should change
-    ZLIB_VERSION and note the origin and nature of the changes in zlib.h as you
-    would for a full source distribution.
+    ZLIB_VERSION and ZLIB_VERNUM and note the origin and nature of the changes
+    in zlib.h as you would for a full source distribution.
 
 23. Will zlib work on a big-endian or little-endian architecture, and can I
     exchange compressed data between them?
@@ -212,12 +215,20 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
 30. Can zlib work with greater than 4 GB of data?
 
     Yes. inflate() and deflate() will process any amount of data correctly.
-    However the strm.total_in and strm_total_out counters may be limited to
-    4 GB. The application can easily set up its own counters updated after each
-    call of inflate() or deflate() to count beyond 4 GB. compress() and
-    uncompress() may be limited to 4 GB, since they operate in a single call
-    using unsigned long lengths. gzseek() and gztell() may be limited to 4 GB
-    depending on how zlib is compiled.
+    Each call of inflate() or deflate() is limited to input and output chunks
+    of the maximum value that can be stored in the compiler's "unsigned int"
+    type, but there is no limit to the number of chunks. Note however that the
+    strm.total_in and strm_total_out counters may be limited to 4 GB. These
+    counters are provided as a convenience and are not used internally by
+    inflate() or deflate(). The application can easily set up its own counters
+    updated after each call of inflate() or deflate() to count beyond 4 GB.
+    compress() and uncompress() may be limited to 4 GB, since they operate in a
+    single call. gzseek() and gztell() may be limited to 4 GB depending on how
+    zlib is compiled. See the zlibCompileFlags() function in zlib.h.
+
+    The word "may" appears several times above since there is a 4 GB limit
+    only if the compiler's "long" type is 32 bits. If the compiler's "long"
+    type is 64 bits, then the limit is 16 exabytes.
 
 31. Does zlib have any security vulnerabilities?
 
@@ -228,7 +239,7 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
     hand, if zlib is compiled to use snprintf() or vsnprintf(), which should
     normally be the case, then there is no vulnerability. The ./configure
     script will display warnings if an insecure variation of sprintf() will
-    be used by gzprintf(). Also the zlibCompileFlags() functions will return
+    be used by gzprintf(). Also the zlibCompileFlags() function will return
     information on what variant of sprintf() is used by gzprintf().
 
     If you don't have snprintf() or vsnprintf() and would like one, you can
@@ -262,9 +273,10 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
 
 35. How can I encrypt/decrypt zip files with zlib?
 
-    zlib doesn't support encryption. PKZIP encryption is very weak and can be
-    broken with freely available programs. To get strong encryption, use gpg
-    which already includes zlib compression.
+    zlib doesn't support encryption. The original PKZIP encryption is very weak
+    and can be broken with freely available programs. To get strong encryption,
+    use gpg ( http://www.gnupg.org/ ) which already includes zlib compression.
+    For PKZIP compatible "encryption", look at http://www.info-zip.org/
 
 36. What's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?
 
@@ -280,6 +292,8 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
     for), using the "gzip" transfer encoding is probably more reliable due to
     an unfortunate choice of name on the part of the HTTP 1.1 authors.
 
+    Bottom line: use the gzip format for HTTP 1.1 encoding.
+
 37. Does zlib support the new "Deflate64" format introduced by PKWare?
 
     No. PKWare has apparently decided to keep that format proprietary, since
@@ -290,4 +304,4 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
 38. Can you please sign these lengthy legal documents and fax them back to us
     so that we can use your software in our product?
 
-    No. Go away.
+    No. Go away. Shoo.
index 6fbe392291eae4f245f11c7668b88c622ad4c266..b1370ef14086afb435ed056063a6c612135ba239 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ LDFLAGS=libz.a
 LDSHARED=$(CC)
 CPP=$(CC) -E
 
-VER=1.2.0.2
+VER=1.2.0.3
 LIBS=libz.a
 SHAREDLIB=libz.so
 
index 6fbe392291eae4f245f11c7668b88c622ad4c266..b1370ef14086afb435ed056063a6c612135ba239 100644 (file)
@@ -24,7 +24,7 @@ LDFLAGS=libz.a
 LDSHARED=$(CC)
 CPP=$(CC) -E
 
-VER=1.2.0.2
+VER=1.2.0.3
 LIBS=libz.a
 SHAREDLIB=libz.so
 
diff --git a/README b/README
index cc489ac089b686037592c85d2efd96e85aaf044e..9c40c482eedf88531e212ecebdaabf955e3d00b4 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
 ZLIB DATA COMPRESSION LIBRARY
 
-zlib 1.2.0.2 is a general purpose data compression library.  All the code is
+zlib 1.2.0.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)
@@ -34,7 +34,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 in
 http://dogma.net/markn/articles/zlibtool/zlibtool.htm
 
-The changes made in version 1.2.0.2 are documented in the file ChangeLog.
+The changes made in version 1.2.0.3 are documented in the file ChangeLog.
 
 Unsupported third party contributions are provided in directory "contrib".
 
index 07d869e83091010ba9a9bf3658e261ba86453cff..96f9f3331f8a9af71ab9383fc21a8f803b353e79 100644 (file)
@@ -828,7 +828,11 @@ extern int ZEXPORT unzLocateFile (file, szFileName, iCaseSensitivity)
     unz_s* s;\r
     int err;\r
 \r
-\r
+    /* We remember the 'current' position in the file so that we can jump\r
+     * back there if we fail.\r
+     */\r
+    unz_file_info cur_file_infoSaved;\r
+    unz_file_info_internal cur_file_info_internalSaved;\r
     uLong num_fileSaved;\r
     uLong pos_in_central_dirSaved;\r
 \r
@@ -843,25 +847,36 @@ extern int ZEXPORT unzLocateFile (file, szFileName, iCaseSensitivity)
     if (!s->current_file_ok)\r
         return UNZ_END_OF_LIST_OF_FILE;\r
 \r
+    /* Save the current state */\r
     num_fileSaved = s->num_file;\r
     pos_in_central_dirSaved = s->pos_in_central_dir;\r
+    cur_file_infoSaved = s->cur_file_info;\r
+    cur_file_info_internalSaved = s->cur_file_info_internal;\r
 \r
     err = unzGoToFirstFile(file);\r
 \r
     while (err == UNZ_OK)\r
     {\r
         char szCurrentFileName[UNZ_MAXFILENAMEINZIP+1];\r
-        unzGetCurrentFileInfo(file,NULL,\r
-                                szCurrentFileName,sizeof(szCurrentFileName)-1,\r
-                                NULL,0,NULL,0);\r
-        if (unzStringFileNameCompare(szCurrentFileName,\r
-                                        szFileName,iCaseSensitivity)==0)\r
-            return UNZ_OK;\r
-        err = unzGoToNextFile(file);\r
+        err = unzGetCurrentFileInfo(file,NULL,\r
+                                    szCurrentFileName,sizeof(szCurrentFileName)-1,\r
+                                    NULL,0,NULL,0);\r
+        if (err == UNZ_OK)\r
+        {\r
+            if (unzStringFileNameCompare(szCurrentFileName,\r
+                                            szFileName,iCaseSensitivity)==0)\r
+                return UNZ_OK;\r
+            err = unzGoToNextFile(file);\r
+        }\r
     }\r
 \r
+    /* We failed, so restore the state of the 'current file' to where we\r
+     * were.\r
+     */\r
     s->num_file = num_fileSaved ;\r
     s->pos_in_central_dir = pos_in_central_dirSaved ;\r
+    s->cur_file_info = cur_file_infoSaved;\r
+    s->cur_file_info_internal = cur_file_info_internalSaved;\r
     return err;\r
 }\r
 \r
diff --git a/contrib/minizip/zconf.h b/contrib/minizip/zconf.h
deleted file mode 100644 (file)
index 8e6215a..0000000
+++ /dev/null
@@ -1,326 +0,0 @@
-/* zconf.h -- configuration of the zlib compression library\r
- * Copyright (C) 1995-2003 Jean-loup Gailly.\r
- * For conditions of distribution and use, see copyright notice in zlib.h\r
- */\r
-\r
-/* @(#) $Id$ */\r
-\r
-#ifndef _ZCONF_H\r
-#define _ZCONF_H\r
-\r
-/*\r
- * If you *really* need a unique prefix for all types and library functions,\r
- * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.\r
- */\r
-#ifdef Z_PREFIX\r
-#  define deflateInit_  z_deflateInit_\r
-#  define deflate       z_deflate\r
-#  define deflateEnd    z_deflateEnd\r
-#  define inflateInit_  z_inflateInit_\r
-#  define inflate       z_inflate\r
-#  define inflateEnd    z_inflateEnd\r
-#  define deflateInit2_ z_deflateInit2_\r
-#  define deflateSetDictionary z_deflateSetDictionary\r
-#  define deflateCopy   z_deflateCopy\r
-#  define deflateReset  z_deflateReset\r
-#  define deflateParams z_deflateParams\r
-#  define deflateBound  z_deflateBound\r
-#  define inflateInit2_ z_inflateInit2_\r
-#  define inflateSetDictionary z_inflateSetDictionary\r
-#  define inflateSync   z_inflateSync\r
-#  define inflateSyncPoint z_inflateSyncPoint\r
-#  define inflateCopy   z_inflateCopy\r
-#  define inflateReset  z_inflateReset\r
-#  define compress      z_compress\r
-#  define compress2     z_compress2\r
-#  define compressBound z_compressBound\r
-#  define uncompress    z_uncompress\r
-#  define adler32       z_adler32\r
-#  define crc32         z_crc32\r
-#  define get_crc_table z_get_crc_table\r
-\r
-#  define Byte          z_Byte\r
-#  define uInt          z_uInt\r
-#  define uLong         z_uLong\r
-#  define Bytef         z_Bytef\r
-#  define charf         z_charf\r
-#  define intf          z_intf\r
-#  define uIntf         z_uIntf\r
-#  define uLongf        z_uLongf\r
-#  define voidpf        z_voidpf\r
-#  define voidp         z_voidp\r
-#endif\r
-\r
-\r
-#ifdef __STDC_VERSION__\r
-#  ifndef STDC\r
-#    define STDC\r
-#  endif\r
-#  if __STDC_VERSION__ >= 199901L\r
-#    ifndef STDC99\r
-#      define STDC99\r
-#    endif\r
-#  endif\r
-#endif\r
-\r
-\r
-#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)\r
-#  define WIN32\r
-#endif\r
-#if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(i386)\r
-#  ifndef __32BIT__\r
-#    define __32BIT__\r
-#  endif\r
-#endif\r
-#if defined(__MSDOS__) && !defined(MSDOS)\r
-#  define MSDOS\r
-#endif\r
-\r
-/*\r
- * Compile with -DMAXSEG_64K if the alloc function cannot allocate more\r
- * than 64k bytes at a time (needed on systems with 16-bit int).\r
- */\r
-#if defined(MSDOS) && !defined(__32BIT__)\r
-#  define MAXSEG_64K\r
-#endif\r
-#ifdef MSDOS\r
-#  define UNALIGNED_OK\r
-#endif\r
-\r
-#if (defined(MSDOS) || defined(_WINDOWS) || defined(WIN32))  && !defined(STDC)\r
-#  define STDC\r
-#endif\r
-#if defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)\r
-#  ifndef STDC\r
-#    define STDC\r
-#  endif\r
-#endif\r
-\r
-#if defined __HOS_AIX__\r
-#  ifndef STDC\r
-#    define STDC\r
-#  endif\r
-#endif\r
-\r
-#ifndef STDC\r
-#  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */\r
-#    define const   /* note: need a more gentle solution here */\r
-#  endif\r
-#endif\r
-\r
-/* Some Mac compilers merge all .h files incorrectly: */\r
-#if defined(__MWERKS__) || defined(applec) ||defined(THINK_C) ||defined(__SC__)\r
-#  define NO_DUMMY_DECL\r
-#endif\r
-\r
-/* Old Borland C incorrectly complains about missing returns: */\r
-#if defined(__BORLANDC__) && (__BORLANDC__ < 0x460)\r
-#  define NEED_DUMMY_RETURN\r
-#endif\r
-#if defined(__TURBOC__) && !defined(__BORLANDC__)\r
-#  define NEED_DUMMY_RETURN\r
-#endif\r
-\r
-\r
-/* Maximum value for memLevel in deflateInit2 */\r
-#ifndef MAX_MEM_LEVEL\r
-#  ifdef MAXSEG_64K\r
-#    define MAX_MEM_LEVEL 8\r
-#  else\r
-#    define MAX_MEM_LEVEL 9\r
-#  endif\r
-#endif\r
-\r
-/* Maximum value for windowBits in deflateInit2 and inflateInit2.\r
- * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files\r
- * created by gzip. (Files created by minigzip can still be extracted by\r
- * gzip.)\r
- */\r
-#ifndef MAX_WBITS\r
-#  define MAX_WBITS   15 /* 32K LZ77 window */\r
-#endif\r
-\r
-/* The memory requirements for deflate are (in bytes):\r
-            (1 << (windowBits+2)) +  (1 << (memLevel+9))\r
- that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)\r
- plus a few kilobytes for small objects. For example, if you want to reduce\r
- the default memory requirements from 256K to 128K, compile with\r
-     make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"\r
- Of course this will generally degrade compression (there's no free lunch).\r
-\r
-   The memory requirements for inflate are (in bytes) 1 << windowBits\r
- that is, 32K for windowBits=15 (default value) plus a few kilobytes\r
- for small objects.\r
-*/\r
-\r
-                        /* Type declarations */\r
-\r
-#ifndef OF /* function prototypes */\r
-#  ifdef STDC\r
-#    define OF(args)  args\r
-#  else\r
-#    define OF(args)  ()\r
-#  endif\r
-#endif\r
-\r
-/*\r
- * Microsoft Visual Studio define _vsnprintf but not vsnprintf\r
- */\r
-#if !defined(STDC99) && !(defined(__TURBOC__) && __TURBOC__ >= 0x550) && !defined(VSNPRINTF_DEFINED)\r
-#  ifdef MSDOS\r
-     /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),\r
-        but for now we just assume it doesn't. */\r
-#    define NO_vsnprintf\r
-#  endif\r
-#  ifdef WIN32\r
-     /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */\r
-#    if !defined(vsnprintf) && !defined(__TURBOC__)\r
-#      define vsnprintf _vsnprintf\r
-#    endif\r
-#  endif\r
-#  ifdef __TURBOC__\r
-#    define NO_vsnprintf\r
-#  endif\r
-#endif\r
-\r
-/* The following definitions for FAR are needed only for MSDOS mixed\r
- * model programming (small or medium model with some far allocations).\r
- * This was tested only with MSC; for other MSDOS compilers you may have\r
- * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,\r
- * just define FAR to be empty.\r
- */\r
-#if (defined(M_I86SM) || defined(M_I86MM)) && !defined(__32BIT__)\r
-   /* MSC small or medium model */\r
-#  define SMALL_MEDIUM\r
-#  ifdef _MSC_VER\r
-#    define FAR _far\r
-#  else\r
-#    define FAR far\r
-#  endif\r
-#endif\r
-#if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))\r
-#  ifndef __32BIT__\r
-#    define SMALL_MEDIUM\r
-#    define FAR _far\r
-#  endif\r
-#endif\r
-\r
-#if defined(WIN32) && (!defined(ZLIB_WIN32_NODLL)) && (!defined(ZLIB_DLL))\r
-#  define ZLIB_DLL\r
-#endif\r
-\r
-/* Compile with -DZLIB_DLL for Windows DLL support */\r
-#if defined(ZLIB_DLL)\r
-#  if defined(_WINDOWS) || defined(WINDOWS) || defined(WIN32)\r
-#    ifndef WINAPIV\r
-#      ifdef FAR\r
-#        undef FAR\r
-#      endif\r
-#      include <windows.h>\r
-#    endif\r
-#    ifdef WIN32\r
-#      define ZEXPORT  WINAPI\r
-#      define ZEXPORTVA  WINAPIV\r
-#    else\r
-#      define ZEXPORT  WINAPI _export\r
-#      define ZEXPORTVA  FAR _cdecl _export\r
-#    endif\r
-#  endif\r
-#  if defined (__BORLANDC__)\r
-#    if (__BORLANDC__ >= 0x0500) && defined (WIN32)\r
-#      include <windows.h>\r
-#      define ZEXPORT __declspec(dllexport) WINAPI\r
-#      define ZEXPORTVA __declspec(dllexport) WINAPIV\r
-#    else\r
-#      if defined (_Windows) && defined (__DLL__)\r
-#        define ZEXPORT _export\r
-#        define ZEXPORTVA _export\r
-#      endif\r
-#    endif\r
-#  endif\r
-#endif\r
-\r
-#if defined (__BEOS__)\r
-#  if defined (ZLIB_DLL)\r
-#    define ZEXTERN extern __declspec(dllexport)\r
-#  else\r
-#    define ZEXTERN extern __declspec(dllimport)\r
-#  endif\r
-#endif\r
-\r
-#ifndef ZEXPORT\r
-#  define ZEXPORT\r
-#endif\r
-#ifndef ZEXPORTVA\r
-#  define ZEXPORTVA\r
-#endif\r
-#ifndef ZEXTERN\r
-#  define ZEXTERN extern\r
-#endif\r
-\r
-#ifndef FAR\r
-#   define FAR\r
-#endif\r
-\r
-#if !defined(__MACTYPES__)\r
-typedef unsigned char  Byte;  /* 8 bits */\r
-#endif\r
-typedef unsigned int   uInt;  /* 16 bits or more */\r
-typedef unsigned long  uLong; /* 32 bits or more */\r
-\r
-#ifdef SMALL_MEDIUM\r
-   /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */\r
-#  define Bytef Byte FAR\r
-#else\r
-   typedef Byte  FAR Bytef;\r
-#endif\r
-typedef char  FAR charf;\r
-typedef int   FAR intf;\r
-typedef uInt  FAR uIntf;\r
-typedef uLong FAR uLongf;\r
-\r
-#ifdef STDC\r
-   typedef void const *voidpc;\r
-   typedef void FAR *voidpf;\r
-   typedef void     *voidp;\r
-#else\r
-   typedef Byte const *voidpc;\r
-   typedef Byte FAR *voidpf;\r
-   typedef Byte     *voidp;\r
-#endif\r
-\r
-#if 0   /* HAVE_UNISTD_H -- this line is updated by ./configure */\r
-#  include <sys/types.h> /* for off_t */\r
-#  include <unistd.h>    /* for SEEK_* and off_t */\r
-#  ifdef VMS\r
-#    include <unixio.h>   /* for off_t */\r
-#  endif\r
-#  define z_off_t  off_t\r
-#endif\r
-#ifndef SEEK_SET\r
-#  define SEEK_SET        0       /* Seek from beginning of file.  */\r
-#  define SEEK_CUR        1       /* Seek from current position.  */\r
-#  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */\r
-#endif\r
-#ifndef z_off_t\r
-#  define  z_off_t long\r
-#endif\r
-\r
-/* MVS linker does not support external names larger than 8 bytes */\r
-#if defined(__MVS__)\r
-#   pragma map(deflateInit_,"DEIN")\r
-#   pragma map(deflateInit2_,"DEIN2")\r
-#   pragma map(deflateEnd,"DEEND")\r
-#   pragma map(deflateBound,"DEBND")\r
-#   pragma map(inflateInit_,"ININ")\r
-#   pragma map(inflateInit2_,"ININ2")\r
-#   pragma map(inflateEnd,"INEND")\r
-#   pragma map(inflateSync,"INSY")\r
-#   pragma map(inflateSetDictionary,"INSEDI")\r
-#   pragma map(compressBound,"CMBND")\r
-#   pragma map(inflate_table,"INTABL")\r
-#   pragma map(inflate_fast,"INFA")\r
-#   pragma map(inflate_copyright,"INCOPY")\r
-#endif\r
-\r
-#endif /* _ZCONF_H */\r
index 8e4233aff3da283025208b781fe987d17905aadd..516530159f7050ec49edca8f22769280d220435a 100644 (file)
@@ -19,7 +19,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                Optimization="0"\r
-                               PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;_DEBUG;_CONSOLE"\r
                                MinimalRebuild="TRUE"\r
                                BasicRuntimeChecks="3"\r
                                RuntimeLibrary="5"\r
@@ -63,7 +63,7 @@
                                Optimization="2"\r
                                InlineFunctionExpansion="1"\r
                                OmitFramePointers="TRUE"\r
-                               PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;NDEBUG;_CONSOLE"\r
                                StringPooling="TRUE"\r
                                RuntimeLibrary="4"\r
                                EnableFunctionLevelLinking="TRUE"\r
index 75c8d801c1751cf577d5027547d71ef82c632c9b..cb658850f49511018e0eee037c1a97efad919b76 100644 (file)
@@ -22,8 +22,8 @@ CPPUSEPCHFLAG =
 FIRSTC = ADLER32.C   \r
 FIRSTCPP =             \r
 RC = rc\r
-CFLAGS_D_WDLL = /nologo /G2 /W3 /Zi /ALw /Od /D "_DEBUG" /D "WINDOWS" /D "ZLIB_DLL" /FR /GD /Fd"ZLIB.PDB"\r
-CFLAGS_R_WDLL = /nologo /W3 /ALw /O1 /D "NDEBUG" /D "WINDOWS" /D "ZLIB_DLL" /FR /GD \r
+CFLAGS_D_WDLL = /nologo /G2 /W3 /Zi /ALw /Od /D "_DEBUG" /D "WINDOWS" /D "ZLIB_DLL" /D "ZLIB_INTERNAL" /FR /GD /Fd"ZLIB.PDB"\r
+CFLAGS_R_WDLL = /nologo /W3 /ALw /O1 /D "NDEBUG" /D "WINDOWS" /D "ZLIB_DLL" /D "ZLIB_INTERNAL" /FR /GD \r
 LFLAGS_D_WDLL = /NOLOGO /ONERROR:NOEXE /NOD /PACKC:61440 /CO /NOE /ALIGN:16 /MAP:FULL\r
 LFLAGS_R_WDLL = /NOLOGO /ONERROR:NOEXE /NOD /PACKC:61440 /NOE /ALIGN:16 /MAP:FULL\r
 LIBS_D_WDLL = oldnames libw commdlg shell olecli olesvr ldllcew\r
@@ -74,7 +74,8 @@ COMPRESS_DEP = c:\zlib\zlib.h \
        c:\zlib\zconf.h\r
 \r
 \r
-CRC32_DEP = c:\zlib\zlib.h \\r
+CRC32_DEP = c:\zlib\zutil.h \\r
+       c:\zlib\zlib.h \\r
        c:\zlib\zconf.h \\r
        c:\zlib\crc32.h\r
 \r
@@ -128,13 +129,15 @@ ZLIB16_RCDEP =
 ZIP_DEP = c:\zlib\zlib.h \\r
        c:\zlib\zconf.h \\r
        c:\zlib\zip.h \\r
-       c:\zlib\ioapi.h\r
+       c:\zlib\ioapi.h \\r
+       c:\zlib\crypt.h\r
 \r
 \r
 UNZIP_DEP = c:\zlib\zlib.h \\r
        c:\zlib\zconf.h \\r
        c:\zlib\unzip.h \\r
-       c:\zlib\ioapi.h\r
+       c:\zlib\ioapi.h \\r
+       c:\zlib\crypt.h\r
 \r
 \r
 INFBACK_DEP = c:\zlib\zutil.h \\r
index 56f0da36e85139b53bce33113d4d6e80955330e4..1c6967f1ff7421356dcb9ac7bd59578082cdd9e3 100644 (file)
@@ -19,7 +19,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                Optimization="0"\r
-                               PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;_DEBUG;_CONSOLE"\r
                                MinimalRebuild="TRUE"\r
                                BasicRuntimeChecks="3"\r
                                RuntimeLibrary="5"\r
@@ -63,7 +63,7 @@
                                Optimization="2"\r
                                InlineFunctionExpansion="1"\r
                                OmitFramePointers="TRUE"\r
-                               PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;NDEBUG;_CONSOLE"\r
                                StringPooling="TRUE"\r
                                RuntimeLibrary="4"\r
                                EnableFunctionLevelLinking="TRUE"\r
index 2cc5aca3791748446abd1d208dd402ebc4676696..93e2a41e65093255f02f24b01dd977856181957f 100644 (file)
@@ -19,7 +19,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                Optimization="0"\r
-                               PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;_DEBUG;_CONSOLE"\r
                                MinimalRebuild="TRUE"\r
                                BasicRuntimeChecks="3"\r
                                RuntimeLibrary="5"\r
@@ -63,7 +63,7 @@
                                Optimization="2"\r
                                InlineFunctionExpansion="1"\r
                                OmitFramePointers="TRUE"\r
-                               PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL;NDEBUG;_CONSOLE"\r
                                StringPooling="TRUE"\r
                                RuntimeLibrary="4"\r
                                EnableFunctionLevelLinking="TRUE"\r
index 94d4a63fbe990af6d973c4ae51fffe39a7d442be..7470b5887453e63f1dce8b0d03fb8134d60c315f 100644 (file)
@@ -20,7 +20,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                Optimization="0"\r
-                               PreprocessorDefinitions="WIN32"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="5"\r
                                PrecompiledHeaderFile=".\zlibstatDebug/zlibstat.pch"\r
@@ -61,7 +61,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="4"\r
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32,ASMV"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL,ASMV"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="4"\r
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32"\r
+                               PreprocessorDefinitions="WIN32;ZLIB_DLL"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="4"\r
index fcf9892f44860c75adb51b176f80264d91d41255..7a9e83a95d911f8081fa3d807623ce4c947ac559 100644 (file)
@@ -20,7 +20,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                Optimization="0"\r
-                               PreprocessorDefinitions="WIN32,ASMV"\r
+                               PreprocessorDefinitions="WIN32,ZLIB_DLL,ASMV"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="1"\r
                                PrecompiledHeaderFile=".\DebugDll/zlibvc.pch"\r
@@ -76,7 +76,7 @@
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32"\r
+                               PreprocessorDefinitions="WIN32,ZLIB_DLL"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="0"\r
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32,ASMV"\r
+                               PreprocessorDefinitions="WIN32,ZLIB_DLL,ASMV"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="0"\r
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32"\r
+                               PreprocessorDefinitions="WIN32,ZLIB_DLL"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="0"\r
                        <Tool\r
                                Name="VCCLCompilerTool"\r
                                InlineFunctionExpansion="1"\r
-                               PreprocessorDefinitions="WIN32,ASMV"\r
+                               PreprocessorDefinitions="WIN32,ZLIB_DLL,ASMV"\r
                                StringPooling="TRUE"\r
                                ExceptionHandling="FALSE"\r
                                RuntimeLibrary="0"\r
                        </File>\r
                        <File\r
                                RelativePath=".\unzip.c">\r
+                               <FileConfiguration\r
+                                       Name="Release|Win32">\r
+                                       <Tool\r
+                                               Name="VCCLCompilerTool"\r
+                                               AdditionalIncludeDirectories=""\r
+                                               PreprocessorDefinitions="ZLIB_INTERNAL"/>\r
+                               </FileConfiguration>\r
                        </File>\r
                        <File\r
                                RelativePath=".\zip.c">\r
+                               <FileConfiguration\r
+                                       Name="Release|Win32">\r
+                                       <Tool\r
+                                               Name="VCCLCompilerTool"\r
+                                               AdditionalIncludeDirectories=""\r
+                                               PreprocessorDefinitions="ZLIB_INTERNAL"/>\r
+                               </FileConfiguration>\r
                        </File>\r
                        <File\r
                                RelativePath=".\zlib.rc">\r
index bb160d8b5e9228a6dd450f70622245d40426f0ff..77b2dd589d7f6e6b1dd7438ce62bc7c4de8ef437 100644 (file)
--- a/deflate.c
+++ b/deflate.c
@@ -52,7 +52,7 @@
 #include "deflate.h"
 
 const char deflate_copyright[] =
-   " deflate 1.2.0.2 Copyright 1995-2003 Jean-loup Gailly ";
+   " deflate 1.2.0.3 Copyright 1995-2003 Jean-loup Gailly ";
 /*
   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
index 3c53a93a92cf20404e3e5e31ac4136716c9bc52d..622c9e6fbbf9fa607ce3948bef2f67484540e909 100644 (file)
--- a/example.c
+++ b/example.c
@@ -528,7 +528,7 @@ int main(argc, argv)
         fprintf(stderr, "warning: different zlib version\n");
     }
 
-    printf("zlib version %s = 0x%04x, compile flags = 0x%x\n",
+    printf("zlib version %s = 0x%04x, compile flags = 0x%lx\n",
             ZLIB_VERSION, ZLIB_VERNUM, zlibCompileFlags());
 
     compr    = (Byte*)calloc((uInt)comprLen, 1);
diff --git a/gzio.c b/gzio.c
index 14fc33c438d16f07a6dd62717572c6a4b9fcb4b4..1beb47facd869d4566251db0de38ed9838022190 100644 (file)
--- a/gzio.c
+++ b/gzio.c
@@ -506,7 +506,8 @@ int ZEXPORT gzungetc(c, file)
     s->back = c;
     s->stream.total_out--;
     s->last = (s->z_err == Z_STREAM_END);
-    if (s->z_eof) s->z_eof = 0;
+    if (s->last) s->z_err = Z_OK;
+    s->z_eof = 0;
     return c;
 }
 
@@ -812,7 +813,7 @@ z_off_t ZEXPORT gzseek (file, offset, whence)
         if (s->outbuf == Z_NULL) return -1L;
     }
     if (offset && s->back != EOF) {
-        s->back == EOF;
+        s->back = EOF;
         s->stream.total_out++;
         offset--;
         if (s->last) s->z_err = Z_STREAM_END;
index fda55371d92e02008b99927647b7dfed91548290..35ab097f5c706cd80d8e9a2f22cd8a682115f36e 100644 (file)
@@ -9,7 +9,7 @@
 #define MAXBITS 15
 
 const char inflate_copyright[] =
-   " inflate 1.2.0.2 Copyright 1995-2003 Mark Adler ";
+   " inflate 1.2.0.3 Copyright 1995-2003 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
@@ -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, 67, 201};
+        19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 193, 193};
     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,
diff --git a/zconf.h b/zconf.h
index b17d4201e2f4d9d40d1c724703a83754acdfd9b5..28e92353ebb1b157aa76a0a64bab853211cdcdf9 100644 (file)
--- a/zconf.h
+++ b/zconf.h
 #      define ZEXPORT   WINAPI _export
 #      define ZEXPORTVA FAR _cdecl _export
 #    else
-#      define ZEXPORT   WINAPI
+#      define ZEXPORT   FAR _cdecl
 #      define ZEXPORTVA FAR _cdecl
 #    endif
 #  else
      /* a fully Win32-compliant compiler */
-#    define ZEXPORT   WINAPI
 #    define ZEXPORTVA CDECL
 #    ifdef ZLIB_DLL
+#      define ZEXPORT WINAPI
 #      ifdef ZLIB_INTERNAL
 #        define ZEXTERN extern __declspec(dllexport)
 #      else
 #        define ZEXTERN extern __declspec(dllimport)
 #      endif
 #    else
+#      define ZEXPORT CDECL
 #      define ZEXTERN extern
 #    endif
 #  endif
index b17d4201e2f4d9d40d1c724703a83754acdfd9b5..28e92353ebb1b157aa76a0a64bab853211cdcdf9 100644 (file)
 #      define ZEXPORT   WINAPI _export
 #      define ZEXPORTVA FAR _cdecl _export
 #    else
-#      define ZEXPORT   WINAPI
+#      define ZEXPORT   FAR _cdecl
 #      define ZEXPORTVA FAR _cdecl
 #    endif
 #  else
      /* a fully Win32-compliant compiler */
-#    define ZEXPORT   WINAPI
 #    define ZEXPORTVA CDECL
 #    ifdef ZLIB_DLL
+#      define ZEXPORT WINAPI
 #      ifdef ZLIB_INTERNAL
 #        define ZEXTERN extern __declspec(dllexport)
 #      else
 #        define ZEXTERN extern __declspec(dllimport)
 #      endif
 #    else
+#      define ZEXPORT CDECL
 #      define ZEXTERN extern
 #    endif
 #  endif
diff --git a/zlib.3 b/zlib.3
index 949c87eba0f1b45b2fc7cbe78ca61fdd2e52299b..69cdce262096dec2823327ddac3ffd77eb3b403b 100644 (file)
--- a/zlib.3
+++ b/zlib.3
@@ -133,7 +133,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.0.1
+Version 1.2.0.3
 Copyright (C) 1995-2003 Jean-loup Gailly (jloup@gzip.org)
 and Mark Adler (madler@alumni.caltech.edu).
 .LP
diff --git a/zlib.h b/zlib.h
index 95370d4beae24e984684d761dd6fab9d1f30f5ed..43a1ac6fa6c654fe6f89fd39bb4e1087e9bb4bde 100644 (file)
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
 /* zlib.h -- interface of the 'zlib' general purpose compression library
-  version 1.2.0.2, July 13th, 2003
+  version 1.2.0.3, July 19th, 2003
 
   Copyright (C) 1995-2003 Jean-loup Gailly and Mark Adler
 
@@ -37,8 +37,8 @@
 extern "C" {
 #endif
 
-#define ZLIB_VERSION "1.2.0.2"
-#define ZLIB_VERNUM 0x1202
+#define ZLIB_VERSION "1.2.0.3"
+#define ZLIB_VERNUM 0x1203
 
 /* 
      The 'zlib' compression library provides in-memory compression and