cannam@128
|
1 MiniZip - Copyright (c) 1998-2010 - by Gilles Vollant - version 1.1 64 bits from Mathias Svensson
|
cannam@128
|
2
|
cannam@128
|
3 Introduction
|
cannam@128
|
4 ---------------------
|
cannam@128
|
5 MiniZip 1.1 is built from MiniZip 1.0 by Gilles Vollant ( http://www.winimage.com/zLibDll/minizip.html )
|
cannam@128
|
6
|
cannam@128
|
7 When adding ZIP64 support into minizip it would result into risk of breaking compatibility with minizip 1.0.
|
cannam@128
|
8 All possible work was done for compatibility.
|
cannam@128
|
9
|
cannam@128
|
10
|
cannam@128
|
11 Background
|
cannam@128
|
12 ---------------------
|
cannam@128
|
13 When adding ZIP64 support Mathias Svensson found that Even Rouault have added ZIP64
|
cannam@128
|
14 support for unzip.c into minizip for a open source project called gdal ( http://www.gdal.org/ )
|
cannam@128
|
15
|
cannam@128
|
16 That was used as a starting point. And after that ZIP64 support was added to zip.c
|
cannam@128
|
17 some refactoring and code cleanup was also done.
|
cannam@128
|
18
|
cannam@128
|
19
|
cannam@128
|
20 Changed from MiniZip 1.0 to MiniZip 1.1
|
cannam@128
|
21 ---------------------------------------
|
cannam@128
|
22 * Added ZIP64 support for unzip ( by Even Rouault )
|
cannam@128
|
23 * Added ZIP64 support for zip ( by Mathias Svensson )
|
cannam@128
|
24 * Reverted some changed that Even Rouault did.
|
cannam@128
|
25 * Bunch of patches received from Gulles Vollant that he received for MiniZip from various users.
|
cannam@128
|
26 * Added unzip patch for BZIP Compression method (patch create by Daniel Borca)
|
cannam@128
|
27 * Added BZIP Compress method for zip
|
cannam@128
|
28 * Did some refactoring and code cleanup
|
cannam@128
|
29
|
cannam@128
|
30
|
cannam@128
|
31 Credits
|
cannam@128
|
32
|
cannam@128
|
33 Gilles Vollant - Original MiniZip author
|
cannam@128
|
34 Even Rouault - ZIP64 unzip Support
|
cannam@128
|
35 Daniel Borca - BZip Compression method support in unzip
|
cannam@128
|
36 Mathias Svensson - ZIP64 zip support
|
cannam@128
|
37 Mathias Svensson - BZip Compression method support in zip
|
cannam@128
|
38
|
cannam@128
|
39 Resources
|
cannam@128
|
40
|
cannam@128
|
41 ZipLayout http://result42.com/projects/ZipFileLayout
|
cannam@128
|
42 Command line tool for Windows that shows the layout and information of the headers in a zip archive.
|
cannam@128
|
43 Used when debugging and validating the creation of zip files using MiniZip64
|
cannam@128
|
44
|
cannam@128
|
45
|
cannam@128
|
46 ZIP App Note http://www.pkware.com/documents/casestudies/APPNOTE.TXT
|
cannam@128
|
47 Zip File specification
|
cannam@128
|
48
|
cannam@128
|
49
|
cannam@128
|
50 Notes.
|
cannam@128
|
51 * To be able to use BZip compression method in zip64.c or unzip64.c the BZIP2 lib is needed and HAVE_BZIP2 need to be defined.
|
cannam@128
|
52
|
cannam@128
|
53 License
|
cannam@128
|
54 ----------------------------------------------------------
|
cannam@128
|
55 Condition of use and distribution are the same than zlib :
|
cannam@128
|
56
|
cannam@128
|
57 This software is provided 'as-is', without any express or implied
|
cannam@128
|
58 warranty. In no event will the authors be held liable for any damages
|
cannam@128
|
59 arising from the use of this software.
|
cannam@128
|
60
|
cannam@128
|
61 Permission is granted to anyone to use this software for any purpose,
|
cannam@128
|
62 including commercial applications, and to alter it and redistribute it
|
cannam@128
|
63 freely, subject to the following restrictions:
|
cannam@128
|
64
|
cannam@128
|
65 1. The origin of this software must not be misrepresented; you must not
|
cannam@128
|
66 claim that you wrote the original software. If you use this software
|
cannam@128
|
67 in a product, an acknowledgment in the product documentation would be
|
cannam@128
|
68 appreciated but is not required.
|
cannam@128
|
69 2. Altered source versions must be plainly marked as such, and must not be
|
cannam@128
|
70 misrepresented as being the original software.
|
cannam@128
|
71 3. This notice may not be removed or altered from any source distribution.
|
cannam@128
|
72
|
cannam@128
|
73 ----------------------------------------------------------
|
cannam@128
|
74
|