summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--win32/DLL_FAQ.txt21
-rw-r--r--win32/zlib.def1
-rw-r--r--win32/zlib1.rc8
3 files changed, 22 insertions, 8 deletions
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:
334 link them in ZLIB1.DLL, and export them? 334 link them in ZLIB1.DLL, and export them?
335 335
336 - No. A legitimate build of ZLIB1.DLL must not include code 336 - No. A legitimate build of ZLIB1.DLL must not include code
337 that does not originate from the official zlib sources. But 337 that does not originate from the official zlib source code.
338 you can make your own private build, and give it a different 338 But you can make your own private DLL build, under a different
339 name, as suggested in the previous answer. 339 file name, as suggested in the previous answer.
340 340
341 For example, in Borland Delphi and C++ Builder, zlib is a part 341 For example, in Borland Delphi and C++ Builder, zlib is a part
342 of the standard VCL library. If an application links to VCL 342 of the standard VCL library. If an application links to VCL
@@ -345,7 +345,16 @@ in the zlib distribution, or at the following location:
345 incompatible ZLIB1.DLL. 345 incompatible ZLIB1.DLL.
346 346
347 347
34814. I made my own ZLIB1.DLL build. Can I test it for compliance? 34814. May I remove some functionality out of ZLIB1.DLL, by enabling
349 macros like NO_GZCOMPRESS or NO_GZIP at compile time?
350
351 - No. A legitimate build of ZLIB1.DLL must provide the complete
352 zlib functionality, as implemented in the official zlib source
353 code. But you can make your own private DLL build, under a
354 different file name, as suggested in the previous answer.
355
356
35715. I made my own ZLIB1.DLL build. Can I test it for compliance?
349 358
350 - We prefer that you download the official DLL from the zlib 359 - We prefer that you download the official DLL from the zlib
351 web site. If you need something peculiar from this DLL, you 360 web site. If you need something peculiar from this DLL, you
@@ -356,3 +365,7 @@ in the zlib distribution, or at the following location:
356 Running these test programs is not a guarantee of compliance, 365 Running these test programs is not a guarantee of compliance,
357 but a failure can imply a detected problem. 366 but a failure can imply a detected problem.
358 367
368**
369
370This document is written and maintained by
371Cosmin Truta <cosmint@cs.ubbcluj.ro>
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
14 deflateReset 14 deflateReset
15 deflateParams 15 deflateParams
16 deflateBound 16 deflateBound
17 deflatePrime
17 inflateSetDictionary 18 inflateSetDictionary
18 inflateSync 19 inflateSync
19 inflateCopy 20 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
5#else 5#else
6VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE 6VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
7#endif 7#endif
8 FILEVERSION 1,2,0,7 8 FILEVERSION 1,2,0,8
9 PRODUCTVERSION 1,2,0,7 9 PRODUCTVERSION 1,2,0,8
10 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 10 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
11#ifdef _DEBUG 11#ifdef _DEBUG
12 FILEFLAGS 1 12 FILEFLAGS 1
@@ -23,12 +23,12 @@ BEGIN
23 //language ID = U.S. English, char set = Windows, Multilingual 23 //language ID = U.S. English, char set = Windows, Multilingual
24 BEGIN 24 BEGIN
25 VALUE "FileDescription", "zlib data compression library\0" 25 VALUE "FileDescription", "zlib data compression library\0"
26 VALUE "FileVersion", "1.2.0.7\0" 26 VALUE "FileVersion", "1.2.0.8\0"
27 VALUE "InternalName", "zlib1.dll\0" 27 VALUE "InternalName", "zlib1.dll\0"
28 VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" 28 VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0"
29 VALUE "OriginalFilename", "zlib1.dll\0" 29 VALUE "OriginalFilename", "zlib1.dll\0"
30 VALUE "ProductName", "zlib\0" 30 VALUE "ProductName", "zlib\0"
31 VALUE "ProductVersion", "1.2.0.7\0" 31 VALUE "ProductVersion", "1.2.0.8\0"
32 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" 32 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
33 END 33 END
34 END 34 END