summaryrefslogtreecommitdiff
path: root/contrib/minizip/MiniZip64_info.txt
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/minizip/MiniZip64_info.txt')
-rw-r--r--contrib/minizip/MiniZip64_info.txt21
1 files changed, 8 insertions, 13 deletions
diff --git a/contrib/minizip/MiniZip64_info.txt b/contrib/minizip/MiniZip64_info.txt
index 334b0f0..57d7152 100644
--- a/contrib/minizip/MiniZip64_info.txt
+++ b/contrib/minizip/MiniZip64_info.txt
@@ -1,29 +1,24 @@
1MiniZip64 - Copyright (c) 2009-2010 - Mathias Svensson - Built from MiniZip by Gilles Vollant 1MiniZip - Copyright (c) 1998-2010 - by Gilles Vollant - version 1.1 64 bits from Mathias Svensson
2 2
3Introduction 3Introduction
4--------------------- 4---------------------
5MiniZip64 is built from MiniZip by Gilles Vollant ( http://www.winimage.com/zLibDll/minizip.html ) 5MiniZip 1.1 is built from MiniZip 1.0 by Gilles Vollant ( http://www.winimage.com/zLibDll/minizip.html )
6 6
7When adding ZIP64 support into minizip it would result into breaking compatibility with current minizip. 7When adding ZIP64 support into minizip it would result into risk of breaking compatibility with minizip 1.0.
8And since breaking compatibility in minizip is not wanted. I decided to create a fork of minizip 8All possible work was done for compatibility.
9and create minizip64.
10
11Even though MiniZip64 is build from MiniZip, all functions and struct's have changed name so that it
12would not collide with each other.
13 9
14 10
15Background 11Background
16--------------------- 12---------------------
17When adding ZIP64 support I found that Even Rouault have added ZIP64 support for unzip.c into minizip 13When adding ZIP64 support Mathias Svensson found that Even Rouault have added ZIP64
18for a open source project called gdal ( http://www.gdal.org/ ) 14support for unzip.c into minizip for a open source project called gdal ( http://www.gdal.org/ )
19 15
20That was used as a starting point. And after that ZIP64 support was added to zip.c 16That was used as a starting point. And after that ZIP64 support was added to zip.c
21some refactoring and code cleanup was also done. 17some refactoring and code cleanup was also done.
22 18
23 19
24Changed from MiniZip to MiniZip64 20Changed from MiniZip 1.0 to MiniZip 1.1
25------------------------------------- 21---------------------------------------
26* Filenames has got a '64' at the end of them . eg unzip.c is now called unzip64.c
27* Added ZIP64 support for unzip ( by Even Rouault ) 22* Added ZIP64 support for unzip ( by Even Rouault )
28* Added ZIP64 support for zip ( by Mathias Svensson ) 23* Added ZIP64 support for zip ( by Mathias Svensson )
29* Reverted some changed that Even Rouault did. 24* Reverted some changed that Even Rouault did.