1/*
2  Copyright (c) 1990-2006 Info-ZIP.  All rights reserved.
3
4  See the accompanying file LICENSE, version 2005-Feb-10 or later
5  (the contents of which are also included in zip.h) for terms of use.
6  If, for some reason, all these files are missing, the Info-ZIP license
7  also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
8*/
9/*
10 *  revision.h by Mark Adler.
11 */
12
13#ifndef __revision_h
14#define __revision_h 1
15
16/* For api version checking */
17#define Z_MAJORVER   2
18#define Z_MINORVER   3
19#define Z_PATCHLEVEL 2
20#define Z_BETALEVEL ""
21
22#define VERSION "2.32"
23#define REVDATE "June 19th 2006"
24
25#define DW_MAJORVER    Z_MAJORVER
26#define DW_MINORVER    Z_MINORVER
27#define DW_PATCHLEVEL  Z_PATCHLEVEL
28
29#ifndef WINDLL
30/* Copyright notice for binary executables--this notice only applies to
31 * those (zip, zipcloak, zipsplit, and zipnote), not to this file
32 * (revision.h).
33 */
34
35#ifndef DEFCPYRT                     /* copyright[] gets defined only once ! */
36extern ZCONST char *copyright[1];    /* keep array sizes in sync with number */
37extern ZCONST char *swlicense[50];   /*  of text line in definition below !! */
38extern ZCONST char *versinfolines[7];
39extern ZCONST char *cryptnote[7];
40
41#else /* DEFCPYRT */
42
43ZCONST char *copyright[] = {
44"Copyright (c) 1990-2006 Info-ZIP - Type '%s \"-L\"' for software license."
45};
46
47ZCONST char *versinfolines[] = {
48"This is %s %s (%s), by Info-ZIP.",
49"Currently maintained by Onno van der Linden. Please send bug reports to",
50"the authors using http://www.info-zip.org/zip-bug.html; see README for details.",
51"",
52"Latest sources and executables are at ftp://ftp.info-zip.org/pub/infozip,",
53"as of above date; see http://www.info-zip.org/ for other sites.",
54""
55};
56
57/* new notice - 2/2/2005 EG */
58ZCONST char *cryptnote[] = {
59"Encryption notice:",
60"\tThe encryption code of this program is not copyrighted and is",
61"\tput in the public domain.  It was originally written in Europe",
62"\tand, to the best of our knowledge, can be freely distributed",
63"\tin both source and object forms from any country, including",
64"\tthe USA under License Exception TSU of the U.S. Export",
65"\tAdministration Regulations (section 740.13(e)) of 6 June 2002."
66};
67
68ZCONST char *swlicense[] = {
69"Copyright (c) 1990-2006 Info-ZIP.  All rights reserved.",
70"",
71"For the purposes of this copyright and license, \"Info-ZIP\" is defined as",
72"the following set of individuals:",
73"",
74"   Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,",
75"   Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth,",
76"   Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz,",
77"   David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko,",
78"   Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs,",
79"   Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda,",
80"   Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren,",
81"   Rich Wales, Mike White",
82"",
83"This software is provided \"as is,\" without warranty of any kind, express",
84"or implied.  In no event shall Info-ZIP or its contributors be held liable",
85"for any direct, indirect, incidental, special or consequential damages",
86"arising out of the use of or inability to use this software.",
87"",
88"Permission is granted to anyone to use this software for any purpose,",
89"including commercial applications, and to alter it and redistribute it",
90"freely, subject to the following restrictions:",
91"",
92"    1. Redistributions of source code must retain the above copyright notice,",
93"       definition, disclaimer, and this list of conditions.",
94"",
95"    2. Redistributions in binary form (compiled executables) must reproduce",
96"       the above copyright notice, definition, disclaimer, and this list of",
97"       conditions in documentation and/or other materials provided with the",
98"       distribution.  The sole exception to this condition is redistribution",
99"       of a standard UnZipSFX binary (including SFXWiz) as part of a",
100"       self-extracting archive; that is permitted without inclusion of this",
101"       license, as long as the normal SFX banner has not been removed from",
102"       the binary or disabled.",
103"",
104"    3. Altered versions--including, but not limited to, ports to new operating",
105"       systems, existing ports with new graphical interfaces, and dynamic,",
106"       shared, or static library versions--must be plainly marked as such",
107"       and must not be misrepresented as being the original source.  Such",
108"       altered versions also must not be misrepresented as being Info-ZIP",
109"       releases--including, but not limited to, labeling of the altered",
110"       versions with the names \"Info-ZIP\" (or any variation thereof, including,",
111"       but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\"",
112"       or \"MacZip\" without the explicit permission of Info-ZIP.  Such altered",
113"       versions are further prohibited from misrepresentative use of the",
114"       Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).",
115"",
116"    4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"",
117"       \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its",
118"       own source and binary releases."
119};
120#endif /* DEFCPYRT */
121#endif /* !WINDLL */
122#endif /* !__revision_h */
123