From a2506218cd8c32416d0d15260834f3c23d910fc8 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:23:14 -0700 Subject: zlib 1.2.0.8 --- win32/DLL_FAQ.txt | 21 +++++++++++++++++---- win32/zlib.def | 1 + win32/zlib1.rc | 8 ++++---- 3 files changed, 22 insertions(+), 8 deletions(-) (limited to 'win32') diff --git a/win32/DLL_FAQ.txt b/win32/DLL_FAQ.txt index c44bce5..80b6b42 100644 --- a/win32/DLL_FAQ.txt +++ b/win32/DLL_FAQ.txt @@ -334,9 +334,9 @@ in the zlib distribution, or at the following location: link them in ZLIB1.DLL, and export them? - No. A legitimate build of ZLIB1.DLL must not include code - that does not originate from the official zlib sources. But - you can make your own private build, and give it a different - name, as suggested in the previous answer. + that does not originate from the official zlib source code. + But you can make your own private DLL build, under a different + file name, as suggested in the previous answer. For example, in Borland Delphi and C++ Builder, zlib is a part of the standard VCL library. If an application links to VCL @@ -345,7 +345,16 @@ in the zlib distribution, or at the following location: incompatible ZLIB1.DLL. -14. I made my own ZLIB1.DLL build. Can I test it for compliance? +14. May I remove some functionality out of ZLIB1.DLL, by enabling + macros like NO_GZCOMPRESS or NO_GZIP at compile time? + + - No. A legitimate build of ZLIB1.DLL must provide the complete + zlib functionality, as implemented in the official zlib source + code. But you can make your own private DLL build, under a + different file name, as suggested in the previous answer. + + +15. I made my own ZLIB1.DLL build. Can I test it for compliance? - We prefer that you download the official DLL from the zlib web site. If you need something peculiar from this DLL, you @@ -356,3 +365,7 @@ in the zlib distribution, or at the following location: Running these test programs is not a guarantee of compliance, but a failure can imply a detected problem. +** + +This document is written and maintained by +Cosmin Truta diff --git a/win32/zlib.def b/win32/zlib.def index 5688a1c..a47cbc1 100644 --- a/win32/zlib.def +++ b/win32/zlib.def @@ -14,6 +14,7 @@ EXPORTS deflateReset deflateParams deflateBound + deflatePrime inflateSetDictionary inflateSync inflateCopy diff --git a/win32/zlib1.rc b/win32/zlib1.rc index 9c26467..09a06f5 100644 --- a/win32/zlib1.rc +++ b/win32/zlib1.rc @@ -5,8 +5,8 @@ VS_VERSION_INFO VERSIONINFO #else VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE #endif - FILEVERSION 1,2,0,7 - PRODUCTVERSION 1,2,0,7 + FILEVERSION 1,2,0,8 + PRODUCTVERSION 1,2,0,8 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG FILEFLAGS 1 @@ -23,12 +23,12 @@ BEGIN //language ID = U.S. English, char set = Windows, Multilingual BEGIN VALUE "FileDescription", "zlib data compression library\0" - VALUE "FileVersion", "1.2.0.7\0" + VALUE "FileVersion", "1.2.0.8\0" VALUE "InternalName", "zlib1.dll\0" VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" VALUE "OriginalFilename", "zlib1.dll\0" VALUE "ProductName", "zlib\0" - VALUE "ProductVersion", "1.2.0.7\0" + VALUE "ProductVersion", "1.2.0.8\0" VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" END END -- cgit v1.2.3-55-g6feb