Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
106ac5b0
Commit
106ac5b0
authored
Mar 23, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgrade zlib to 1.2.2
parent
f21f8f98
Changes
18
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
252 additions
and
137 deletions
+252
-137
acinclude.m4
acinclude.m4
+3
-2
zlib/ChangeLog
zlib/ChangeLog
+42
-0
zlib/FAQ
zlib/FAQ
+55
-33
zlib/INDEX
zlib/INDEX
+3
-0
zlib/README
zlib/README
+4
-4
zlib/crc32.c
zlib/crc32.c
+49
-27
zlib/deflate.c
zlib/deflate.c
+2
-2
zlib/deflate.h
zlib/deflate.h
+0
-1
zlib/gzio.c
zlib/gzio.c
+4
-0
zlib/infback.c
zlib/infback.c
+3
-0
zlib/inffast.c
zlib/inffast.c
+2
-2
zlib/inflate.c
zlib/inflate.c
+4
-0
zlib/inftrees.c
zlib/inftrees.c
+12
-5
zlib/trees.c
zlib/trees.c
+2
-2
zlib/zconf.h
zlib/zconf.h
+43
-40
zlib/zlib.3
zlib/zlib.3
+3
-3
zlib/zlib.h
zlib/zlib.h
+15
-15
zlib/zutil.h
zlib/zutil.h
+6
-1
No files found.
acinclude.m4
View file @
106ac5b0
...
@@ -256,9 +256,10 @@ case $SYSTEM_TYPE in
...
@@ -256,9 +256,10 @@ case $SYSTEM_TYPE in
AC_ARG_WITH([zlib-dir],
AC_ARG_WITH([zlib-dir],
AC_HELP_STRING([--with-zlib-dir=DIR],
AC_HELP_STRING([--with-zlib-dir=DIR],
[Provide MySQL with a custom location of
[Provide MySQL with a custom location of
compression library. Given DIR, zlib
bin
ary is
compression library. Given DIR, zlib
libr
ary is
assumed to be in $DIR/lib and header files
assumed to be in $DIR/lib and header files
in $DIR/include.]),
in $DIR/include. Specify "bundled" to use
bundled zlib.]),
[mysql_zlib_dir=${withval}],
[mysql_zlib_dir=${withval}],
[mysql_zlib_dir=""])
[mysql_zlib_dir=""])
case "$mysql_zlib_dir" in
case "$mysql_zlib_dir" in
...
...
zlib/ChangeLog
View file @
106ac5b0
...
@@ -6,6 +6,48 @@ in MySQL distribution. If you are working on porting MySQL to one of rare
...
@@ -6,6 +6,48 @@ in MySQL distribution. If you are working on porting MySQL to one of rare
platforms, you might find worth looking at the original zlib distribution
platforms, you might find worth looking at the original zlib distribution
and using appropriate Makefiles/project files from it.
and using appropriate Makefiles/project files from it.
Changes in 1.2.2 (3 October 2004)
- Update zlib.h comments on gzip in-memory processing
- Set adler to 1 in inflateReset() to support Java test suite [Walles]
- Add contrib/dotzlib [Ravn]
- Update win32/DLL_FAQ.txt [Truta]
- Update contrib/minizip [Vollant]
- Move contrib/visual-basic.txt to old/ [Truta]
- Fix assembler builds in projects/visualc6/ [Truta]
Changes in 1.2.1.2 (9 September 2004)
- Update INDEX file
- Fix trees.c to update strm->data_type (no one ever noticed!)
- Fix bug in error case in inflate.c, infback.c, and infback9.c [Brown]
- Add "volatile" to crc table flag declaration (for DYNAMIC_CRC_TABLE)
- Add limited multitasking protection to DYNAMIC_CRC_TABLE
- Add NO_vsnprintf for VMS in zutil.h [Mozilla]
- Don't declare strerror() under VMS [Mozilla]
- Add comment to DYNAMIC_CRC_TABLE to use get_crc_table() to initialize
- Update contrib/ada [Anisimkov]
- Update contrib/minizip [Vollant]
- Fix configure to not hardcode directories for Darwin [Peterson]
- Fix gzio.c to not return error on empty files [Brown]
- Fix indentation; update version in contrib/delphi/ZLib.pas and
contrib/pascal/zlibpas.pas [Truta]
- Update mkasm.bat in contrib/masmx86 [Truta]
- Update contrib/untgz [Truta]
- Add projects/README.projects [Truta]
- Add project for MS Visual C++ 6.0 in projects/visualc6 [Cadieux, Truta]
- Update win32/DLL_FAQ.txt [Truta]
- Update list of Z_PREFIX symbols in zconf.h [Randers-Pehrson, Truta]
- Remove an unnecessary assignment to curr in inftrees.c [Truta]
- Add OS/2 to exe builds in configure [Poltorak]
- Remove err dummy parameter in zlib.h [Kientzle]
Changes in 1.2.1.1 (9 January 2004)
- Update email address in README
- Several FAQ updates
- Fix a big fat bug in inftrees.c that prevented decoding valid
dynamic blocks with only literals and no distance codes --
Thanks to "Hot Emu" for the bug report and sample file
- Add a note to puff.c on no distance codes case.
Changes in 1.2.1 (17 November 2003)
Changes in 1.2.1 (17 November 2003)
- Remove a tab in contrib/gzappend/gzappend.c
- Remove a tab in contrib/gzappend/gzappend.c
- Update some interfaces in contrib for new zlib functions
- Update some interfaces in contrib for new zlib functions
...
...
zlib/FAQ
View file @
106ac5b0
This diff is collapsed.
Click to expand it.
zlib/INDEX
View file @
106ac5b0
...
@@ -8,9 +8,12 @@ algorithm.txt description of the (de)compression algorithm
...
@@ -8,9 +8,12 @@ algorithm.txt description of the (de)compression algorithm
configure configure script for Unix
configure configure script for Unix
zconf.in.h template for zconf.h (used by configure)
zconf.in.h template for zconf.h (used by configure)
amiga/ makefiles for Amiga SAS C
as400/ makefiles for IBM AS/400
msdos/ makefiles for MSDOS
msdos/ makefiles for MSDOS
old/ makefiles for various architectures and zlib documentation
old/ makefiles for various architectures and zlib documentation
files that have not yet been updated for zlib 1.2.x
files that have not yet been updated for zlib 1.2.x
projects/ projects for various Integrated Development Environments
qnx/ makefiles for QNX
qnx/ makefiles for QNX
win32/ makefiles for Windows
win32/ makefiles for Windows
...
...
zlib/README
View file @
106ac5b0
ZLIB DATA COMPRESSION LIBRARY
ZLIB DATA COMPRESSION LIBRARY
zlib 1.2.
1
is a general purpose data compression library. All the code is
zlib 1.2.
2
is a general purpose data compression library. All the code is
thread safe. The data format used by the zlib library is described by RFCs
thread safe. The data format used by the zlib library is described by RFCs
(Request for Comments) 1950 to 1952 in the files
(Request for Comments) 1950 to 1952 in the files
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
...
@@ -34,7 +34,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
...
@@ -34,7 +34,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
issue of Dr. Dobb's Journal; a copy of the article is available in
issue of Dr. Dobb's Journal; a copy of the article is available in
http://dogma.net/markn/articles/zlibtool/zlibtool.htm
http://dogma.net/markn/articles/zlibtool/zlibtool.htm
The changes made in version 1.2.
1
are documented in the file ChangeLog.
The changes made in version 1.2.
2
are documented in the file ChangeLog.
Unsupported third party contributions are provided in directory "contrib".
Unsupported third party contributions are provided in directory "contrib".
...
@@ -46,7 +46,7 @@ A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is in the
...
@@ -46,7 +46,7 @@ A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is in the
CPAN (Comprehensive Perl Archive Network) sites
CPAN (Comprehensive Perl Archive Network) sites
http://www.cpan.org/modules/by-module/Compress/
http://www.cpan.org/modules/by-module/Compress/
A Python interface to zlib written by A.M. Kuchling <amk@
magnet.com
> is
A Python interface to zlib written by A.M. Kuchling <amk@
amk.ca
> is
available in Python 1.5 and later versions, see
available in Python 1.5 and later versions, see
http://www.python.org/doc/lib/module-zlib.html
http://www.python.org/doc/lib/module-zlib.html
...
@@ -93,7 +93,7 @@ Acknowledgments:
...
@@ -93,7 +93,7 @@ Acknowledgments:
Copyright notice:
Copyright notice:
(C) 1995-200
3
Jean-loup Gailly and Mark Adler
(C) 1995-200
4
Jean-loup Gailly and Mark Adler
This software is provided 'as-is', without any express or implied
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
warranty. In no event will the authors be held liable for any damages
...
...
zlib/crc32.c
View file @
106ac5b0
...
@@ -11,6 +11,14 @@
...
@@ -11,6 +11,14 @@
/* @(#) $Id$ */
/* @(#) $Id$ */
/*
Note on the use of DYNAMIC_CRC_TABLE: there is no mutex or semaphore
protection on the static variables used to control the first-use generation
of the crc tables. Therefore, if you #define DYNAMIC_CRC_TABLE, you should
first call get_crc_table() to initialize the tables before allowing more than
one thread to use crc32().
*/
#ifdef MAKECRCH
#ifdef MAKECRCH
# include <stdio.h>
# include <stdio.h>
# ifndef DYNAMIC_CRC_TABLE
# ifndef DYNAMIC_CRC_TABLE
...
@@ -58,7 +66,7 @@
...
@@ -58,7 +66,7 @@
#ifdef DYNAMIC_CRC_TABLE
#ifdef DYNAMIC_CRC_TABLE
local
int
crc_table_empty
=
1
;
local
volatile
int
crc_table_empty
=
1
;
local
unsigned
long
FAR
crc_table
[
TBLS
][
256
];
local
unsigned
long
FAR
crc_table
[
TBLS
][
256
];
local
void
make_crc_table
OF
((
void
));
local
void
make_crc_table
OF
((
void
));
#ifdef MAKECRCH
#ifdef MAKECRCH
...
@@ -97,8 +105,15 @@ local void make_crc_table()
...
@@ -97,8 +105,15 @@ local void make_crc_table()
int
n
,
k
;
int
n
,
k
;
unsigned
long
poly
;
/* polynomial exclusive-or pattern */
unsigned
long
poly
;
/* polynomial exclusive-or pattern */
/* terms of polynomial defining this crc (except x^32): */
/* terms of polynomial defining this crc (except x^32): */
static
volatile
int
first
=
1
;
/* flag to limit concurrent making */
static
const
unsigned
char
p
[]
=
{
0
,
1
,
2
,
4
,
5
,
7
,
8
,
10
,
11
,
12
,
16
,
22
,
23
,
26
};
static
const
unsigned
char
p
[]
=
{
0
,
1
,
2
,
4
,
5
,
7
,
8
,
10
,
11
,
12
,
16
,
22
,
23
,
26
};
/* See if another task is already doing this (not thread-safe, but better
than nothing -- significantly reduces duration of vulnerability in
case the advice about DYNAMIC_CRC_TABLE is ignored) */
if
(
first
)
{
first
=
0
;
/* make exclusive-or pattern from polynomial (0xedb88320UL) */
/* make exclusive-or pattern from polynomial (0xedb88320UL) */
poly
=
0UL
;
poly
=
0UL
;
for
(
n
=
0
;
n
<
sizeof
(
p
)
/
sizeof
(
unsigned
char
);
n
++
)
for
(
n
=
0
;
n
<
sizeof
(
p
)
/
sizeof
(
unsigned
char
);
n
++
)
...
@@ -113,8 +128,8 @@ local void make_crc_table()
...
@@ -113,8 +128,8 @@ local void make_crc_table()
}
}
#ifdef BYFOUR
#ifdef BYFOUR
/* generate crc for each value followed by one, two, and three zeros, and
/* generate crc for each value followed by one, two, and three zeros,
then the byte reversal of those as well as the first table */
and
then the byte reversal of those as well as the first table */
for
(
n
=
0
;
n
<
256
;
n
++
)
{
for
(
n
=
0
;
n
<
256
;
n
++
)
{
c
=
crc_table
[
0
][
n
];
c
=
crc_table
[
0
][
n
];
crc_table
[
4
][
n
]
=
REV
(
c
);
crc_table
[
4
][
n
]
=
REV
(
c
);
...
@@ -127,6 +142,12 @@ local void make_crc_table()
...
@@ -127,6 +142,12 @@ local void make_crc_table()
#endif
/* BYFOUR */
#endif
/* BYFOUR */
crc_table_empty
=
0
;
crc_table_empty
=
0
;
}
else
{
/* not first */
/* wait for the other guy to finish (not efficient, but rare) */
while
(
crc_table_empty
)
;
}
#ifdef MAKECRCH
#ifdef MAKECRCH
/* write out CRC tables to crc32.h */
/* write out CRC tables to crc32.h */
...
@@ -180,7 +201,8 @@ local void write_table(out, table)
...
@@ -180,7 +201,8 @@ local void write_table(out, table)
const
unsigned
long
FAR
*
ZEXPORT
get_crc_table
()
const
unsigned
long
FAR
*
ZEXPORT
get_crc_table
()
{
{
#ifdef DYNAMIC_CRC_TABLE
#ifdef DYNAMIC_CRC_TABLE
if
(
crc_table_empty
)
make_crc_table
();
if
(
crc_table_empty
)
make_crc_table
();
#endif
/* DYNAMIC_CRC_TABLE */
#endif
/* DYNAMIC_CRC_TABLE */
return
(
const
unsigned
long
FAR
*
)
crc_table
;
return
(
const
unsigned
long
FAR
*
)
crc_table
;
}
}
...
...
zlib/deflate.c
View file @
106ac5b0
/* deflate.c -- compress data using the deflation algorithm
/* deflate.c -- compress data using the deflation algorithm
* Copyright (C) 1995-200
3
Jean-loup Gailly.
* Copyright (C) 1995-200
4
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
* For conditions of distribution and use, see copyright notice in zlib.h
*/
*/
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
#include "deflate.h"
#include "deflate.h"
const
char
deflate_copyright
[]
=
const
char
deflate_copyright
[]
=
" deflate 1.2.
1 Copyright 1995-2003
Jean-loup Gailly "
;
" deflate 1.2.
2 Copyright 1995-2004
Jean-loup Gailly "
;
/*
/*
If you use the zlib library in a product, an acknowledgment is welcome
If you use the zlib library in a product, an acknowledgment is welcome
in the documentation of your product. If for some reason you cannot
in the documentation of your product. If for some reason you cannot
...
...
zlib/deflate.h
View file @
106ac5b0
...
@@ -95,7 +95,6 @@ typedef struct internal_state {
...
@@ -95,7 +95,6 @@ typedef struct internal_state {
Bytef
*
pending_out
;
/* next pending byte to output to the stream */
Bytef
*
pending_out
;
/* next pending byte to output to the stream */
int
pending
;
/* nb of bytes in the pending buffer */
int
pending
;
/* nb of bytes in the pending buffer */
int
wrap
;
/* bit 0 true for zlib, bit 1 true for gzip */
int
wrap
;
/* bit 0 true for zlib, bit 1 true for gzip */
Byte
data_type
;
/* UNKNOWN, BINARY or ASCII */
Byte
method
;
/* STORED (for zip only) or DEFLATED */
Byte
method
;
/* STORED (for zip only) or DEFLATED */
int
last_flush
;
/* value of flush param for previous deflate call */
int
last_flush
;
/* value of flush param for previous deflate call */
...
...
zlib/gzio.c
View file @
106ac5b0
...
@@ -455,6 +455,10 @@ int ZEXPORT gzread (file, buf, len)
...
@@ -455,6 +455,10 @@ int ZEXPORT gzread (file, buf, len)
s
->
z_err
=
Z_ERRNO
;
s
->
z_err
=
Z_ERRNO
;
break
;
break
;
}
}
if
(
feof
(
s
->
file
))
{
/* avoid error for empty file */
s
->
z_err
=
Z_STREAM_END
;
break
;
}
}
}
s
->
stream
.
next_in
=
s
->
inbuf
;
s
->
stream
.
next_in
=
s
->
inbuf
;
}
}
...
...
zlib/infback.c
View file @
106ac5b0
...
@@ -434,6 +434,9 @@ void FAR *out_desc;
...
@@ -434,6 +434,9 @@ void FAR *out_desc;
}
}
}
}
/* handle error breaks in while */
if
(
state
->
mode
==
BAD
)
break
;
/* build code tables */
/* build code tables */
state
->
next
=
state
->
codes
;
state
->
next
=
state
->
codes
;
state
->
lencode
=
(
code
const
FAR
*
)(
state
->
next
);
state
->
lencode
=
(
code
const
FAR
*
)(
state
->
next
);
...
...
zlib/inffast.c
View file @
106ac5b0
/* inffast.c -- fast decoding
/* inffast.c -- fast decoding
* Copyright (C) 1995-200
3
Mark Adler
* Copyright (C) 1995-200
4
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
* For conditions of distribution and use, see copyright notice in zlib.h
*/
*/
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
- none
- none
No measurable difference:
No measurable difference:
- Pentium III (Anderson)
- Pentium III (Anderson)
- 68060 (Nikl)
-
M
68060 (Nikl)
*/
*/
#ifdef POSTINC
#ifdef POSTINC
# define OFF 0
# define OFF 0
...
...
zlib/inflate.c
View file @
106ac5b0
...
@@ -109,6 +109,7 @@ z_streamp strm;
...
@@ -109,6 +109,7 @@ z_streamp strm;
state
=
(
struct
inflate_state
FAR
*
)
strm
->
state
;
state
=
(
struct
inflate_state
FAR
*
)
strm
->
state
;
strm
->
total_in
=
strm
->
total_out
=
state
->
total
=
0
;
strm
->
total_in
=
strm
->
total_out
=
state
->
total
=
0
;
strm
->
msg
=
Z_NULL
;
strm
->
msg
=
Z_NULL
;
strm
->
adler
=
1
;
/* to support ill-conceived Java test suite */
state
->
mode
=
HEAD
;
state
->
mode
=
HEAD
;
state
->
last
=
0
;
state
->
last
=
0
;
state
->
havedict
=
0
;
state
->
havedict
=
0
;
...
@@ -861,6 +862,9 @@ int flush;
...
@@ -861,6 +862,9 @@ int flush;
}
}
}
}
/* handle error breaks in while */
if
(
state
->
mode
==
BAD
)
break
;
/* build code tables */
/* build code tables */
state
->
next
=
state
->
codes
;
state
->
next
=
state
->
codes
;
state
->
lencode
=
(
code
const
FAR
*
)(
state
->
next
);
state
->
lencode
=
(
code
const
FAR
*
)(
state
->
next
);
...
...
zlib/inftrees.c
View file @
106ac5b0
/* inftrees.c -- generate Huffman trees for efficient decoding
/* inftrees.c -- generate Huffman trees for efficient decoding
* Copyright (C) 1995-200
3
Mark Adler
* Copyright (C) 1995-200
4
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
* For conditions of distribution and use, see copyright notice in zlib.h
*/
*/
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
#define MAXBITS 15
#define MAXBITS 15
const
char
inflate_copyright
[]
=
const
char
inflate_copyright
[]
=
" inflate 1.2.
1 Copyright 1995-2003
Mark Adler "
;
" inflate 1.2.
2 Copyright 1995-2004
Mark Adler "
;
/*
/*
If you use the zlib library in a product, an acknowledgment is welcome
If you use the zlib library in a product, an acknowledgment is welcome
in the documentation of your product. If for some reason you cannot
in the documentation of your product. If for some reason you cannot
...
@@ -62,7 +62,7 @@ unsigned short FAR *work;
...
@@ -62,7 +62,7 @@ unsigned short FAR *work;
35
,
43
,
51
,
59
,
67
,
83
,
99
,
115
,
131
,
163
,
195
,
227
,
258
,
0
,
0
};
35
,
43
,
51
,
59
,
67
,
83
,
99
,
115
,
131
,
163
,
195
,
227
,
258
,
0
,
0
};
static
const
unsigned
short
lext
[
31
]
=
{
/* Length codes 257..285 extra */
static
const
unsigned
short
lext
[
31
]
=
{
/* Length codes 257..285 extra */
16
,
16
,
16
,
16
,
16
,
16
,
16
,
16
,
17
,
17
,
17
,
17
,
18
,
18
,
18
,
18
,
16
,
16
,
16
,
16
,
16
,
16
,
16
,
16
,
17
,
17
,
17
,
17
,
18
,
18
,
18
,
18
,
19
,
19
,
19
,
19
,
20
,
20
,
20
,
20
,
21
,
21
,
21
,
21
,
16
,
76
,
66
};
19
,
19
,
19
,
19
,
20
,
20
,
20
,
20
,
21
,
21
,
21
,
21
,
16
,
199
,
198
};
static
const
unsigned
short
dbase
[
32
]
=
{
/* Distance codes 0..29 base */
static
const
unsigned
short
dbase
[
32
]
=
{
/* Distance codes 0..29 base */
1
,
2
,
3
,
4
,
5
,
7
,
9
,
13
,
17
,
25
,
33
,
49
,
65
,
97
,
129
,
193
,
1
,
2
,
3
,
4
,
5
,
7
,
9
,
13
,
17
,
25
,
33
,
49
,
65
,
97
,
129
,
193
,
257
,
385
,
513
,
769
,
1025
,
1537
,
2049
,
3073
,
4097
,
6145
,
257
,
385
,
513
,
769
,
1025
,
1537
,
2049
,
3073
,
4097
,
6145
,
...
@@ -114,7 +114,15 @@ unsigned short FAR *work;
...
@@ -114,7 +114,15 @@ unsigned short FAR *work;
for
(
max
=
MAXBITS
;
max
>=
1
;
max
--
)
for
(
max
=
MAXBITS
;
max
>=
1
;
max
--
)
if
(
count
[
max
]
!=
0
)
break
;
if
(
count
[
max
]
!=
0
)
break
;
if
(
root
>
max
)
root
=
max
;
if
(
root
>
max
)
root
=
max
;
if
(
max
==
0
)
return
-
1
;
/* no codes! */
if
(
max
==
0
)
{
/* no symbols to code at all */
this
.
op
=
(
unsigned
char
)
64
;
/* invalid code marker */
this
.
bits
=
(
unsigned
char
)
1
;
this
.
val
=
(
unsigned
short
)
0
;
*
(
*
table
)
++
=
this
;
/* make a table to force an error */
*
(
*
table
)
++
=
this
;
*
bits
=
1
;
return
0
;
/* no symbols, but wait for decoding to report error */
}
for
(
min
=
1
;
min
<=
MAXBITS
;
min
++
)
for
(
min
=
1
;
min
<=
MAXBITS
;
min
++
)
if
(
count
[
min
]
!=
0
)
break
;
if
(
count
[
min
]
!=
0
)
break
;
if
(
root
<
min
)
root
=
min
;
if
(
root
<
min
)
root
=
min
;
...
@@ -295,7 +303,6 @@ unsigned short FAR *work;
...
@@ -295,7 +303,6 @@ unsigned short FAR *work;
drop
=
0
;
drop
=
0
;
len
=
root
;
len
=
root
;
next
=
*
table
;
next
=
*
table
;
curr
=
root
;
this
.
bits
=
(
unsigned
char
)
len
;
this
.
bits
=
(
unsigned
char
)
len
;
}
}
...
...
zlib/trees.c
View file @
106ac5b0
...
@@ -931,7 +931,7 @@ void _tr_flush_block(s, buf, stored_len, eof)
...
@@ -931,7 +931,7 @@ void _tr_flush_block(s, buf, stored_len, eof)
if
(
s
->
level
>
0
)
{
if
(
s
->
level
>
0
)
{
/* Check if the file is ascii or binary */
/* Check if the file is ascii or binary */
if
(
s
->
data_type
==
Z_UNKNOWN
)
set_data_type
(
s
);
if
(
s
->
strm
->
data_type
==
Z_UNKNOWN
)
set_data_type
(
s
);
/* Construct the literal and distance trees */
/* Construct the literal and distance trees */
build_tree
(
s
,
(
tree_desc
*
)(
&
(
s
->
l_desc
)));
build_tree
(
s
,
(
tree_desc
*
)(
&
(
s
->
l_desc
)));
...
@@ -1131,7 +1131,7 @@ local void set_data_type(s)
...
@@ -1131,7 +1131,7 @@ local void set_data_type(s)
while
(
n
<
7
)
bin_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
while
(
n
<
7
)
bin_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
while
(
n
<
128
)
ascii_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
while
(
n
<
128
)
ascii_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
while
(
n
<
LITERALS
)
bin_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
while
(
n
<
LITERALS
)
bin_freq
+=
s
->
dyn_ltree
[
n
++
].
Freq
;
s
->
data_type
=
(
Byte
)(
bin_freq
>
(
ascii_freq
>>
2
)
?
Z_BINARY
:
Z_ASCII
)
;
s
->
strm
->
data_type
=
bin_freq
>
(
ascii_freq
>>
2
)
?
Z_BINARY
:
Z_ASCII
;
}
}
/* ===========================================================================
/* ===========================================================================
...
...
zlib/zconf.h
View file @
106ac5b0
/* zconf.h -- configuration of the zlib compression library
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-200
3
Jean-loup Gailly.
* Copyright (C) 1995-200
4
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
* For conditions of distribution and use, see copyright notice in zlib.h
*/
*/
...
@@ -23,15 +23,17 @@
...
@@ -23,15 +23,17 @@
# define deflateSetDictionary z_deflateSetDictionary
# define deflateSetDictionary z_deflateSetDictionary
# define deflateCopy z_deflateCopy
# define deflateCopy z_deflateCopy
# define deflateReset z_deflateReset
# define deflateReset z_deflateReset
# define deflatePrime z_deflatePrime
# define deflateParams z_deflateParams
# define deflateParams z_deflateParams
# define deflateBound z_deflateBound
# define deflateBound z_deflateBound
# define deflatePrime z_deflatePrime
# define inflateInit2_ z_inflateInit2_
# define inflateInit2_ z_inflateInit2_
# define inflateSetDictionary z_inflateSetDictionary
# define inflateSetDictionary z_inflateSetDictionary
# define inflateSync z_inflateSync
# define inflateSync z_inflateSync
# define inflateSyncPoint z_inflateSyncPoint
# define inflateSyncPoint z_inflateSyncPoint
# define inflateCopy z_inflateCopy
# define inflateCopy z_inflateCopy
# define inflateReset z_inflateReset
# define inflateReset z_inflateReset
# define inflateBack z_inflateBack
# define inflateBackEnd z_inflateBackEnd
# define compress z_compress
# define compress z_compress
# define compress2 z_compress2
# define compress2 z_compress2
# define compressBound z_compressBound
# define compressBound z_compressBound
...
@@ -39,6 +41,7 @@
...
@@ -39,6 +41,7 @@
# define adler32 z_adler32
# define adler32 z_adler32
# define crc32 z_crc32
# define crc32 z_crc32
# define get_crc_table z_get_crc_table
# define get_crc_table z_get_crc_table
# define zError z_zError
# define Byte z_Byte
# define Byte z_Byte
# define uInt z_uInt
# define uInt z_uInt
...
@@ -293,7 +296,7 @@ typedef uLong FAR uLongf;
...
@@ -293,7 +296,7 @@ typedef uLong FAR uLongf;
#endif
#endif
#if defined(__OS400__)
#if defined(__OS400__)
#define NO_vsnprintf
#
define NO_vsnprintf
#endif
#endif
#if defined(__MVS__)
#if defined(__MVS__)
...
...
zlib/zlib.3
View file @
106ac5b0
.TH ZLIB 3 "
17 November 2003
"
.TH ZLIB 3 "
3 October 2004
"
.SH NAME
.SH NAME
zlib \- compression/decompression library
zlib \- compression/decompression library
.SH SYNOPSIS
.SH SYNOPSIS
...
@@ -133,8 +133,8 @@ before asking for help.
...
@@ -133,8 +133,8 @@ before asking for help.
Send questions and/or comments to zlib@gzip.org,
Send questions and/or comments to zlib@gzip.org,
or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
.SH AUTHORS
.SH AUTHORS
Version 1.2.
1
Version 1.2.
2
Copyright (C) 1995-200
3
Jean-loup Gailly (jloup@gzip.org)
Copyright (C) 1995-200
4
Jean-loup Gailly (jloup@gzip.org)
and Mark Adler (madler@alumni.caltech.edu).
and Mark Adler (madler@alumni.caltech.edu).
.LP
.LP
This software is provided "as-is,"
This software is provided "as-is,"
...
...
zlib/zlib.h
View file @
106ac5b0
/* zlib.h -- interface of the 'zlib' general purpose compression library
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.
1, November 17th, 2003
version 1.2.
2, October 3rd, 2004
Copyright (C) 1995-200
3
Jean-loup Gailly and Mark Adler
Copyright (C) 1995-200
4
Jean-loup Gailly and Mark Adler
This software is provided 'as-is', without any express or implied
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
warranty. In no event will the authors be held liable for any damages
...
@@ -37,8 +37,8 @@
...
@@ -37,8 +37,8 @@
extern
"C"
{
extern
"C"
{
#endif
#endif
#define ZLIB_VERSION "1.2.
1
"
#define ZLIB_VERSION "1.2.
2
"
#define ZLIB_VERNUM 0x12
1
0
#define ZLIB_VERNUM 0x12
2
0
/*
/*
The 'zlib' compression library provides in-memory compression and
The 'zlib' compression library provides in-memory compression and
...
@@ -53,24 +53,22 @@ extern "C" {
...
@@ -53,24 +53,22 @@ extern "C" {
application must provide more input and/or consume the output
application must provide more input and/or consume the output
(providing more output space) before each call.
(providing more output space) before each call.
The compressed data format used by
the in-memory functions is the zlib
The compressed data format used by
default by the in-memory functions is
format, which is a zlib wrapper documented in RFC 1950, wrapped around a
the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
deflate stream, which is itself documented in RFC 1951.
around a
deflate stream, which is itself documented in RFC 1951.
The library also supports reading and writing files in gzip (.gz) format
The library also supports reading and writing files in gzip (.gz) format
with an interface similar to that of stdio using the functions that start
with an interface similar to that of stdio using the functions that start
with "gz". The gzip format is different from the zlib format. gzip is a
with "gz". The gzip format is different from the zlib format. gzip is a
gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
This library can optionally read and write gzip streams in memory as well.
The zlib format was designed to be compact and fast for use in memory
The zlib format was designed to be compact and fast for use in memory
and on communications channels. The gzip format was designed for single-
and on communications channels. The gzip format was designed for single-
file compression on file systems, has a larger header than zlib to maintain
file compression on file systems, has a larger header than zlib to maintain
directory information, and uses a different, slower check method than zlib.
directory information, and uses a different, slower check method than zlib.
This library does not provide any functions to write gzip files in memory.
However such functions could be easily written using zlib's deflate function,
the documentation in the gzip RFC, and the examples in gzio.c.
The library does not install any signal handler. The decoder checks
The library does not install any signal handler. The decoder checks
the consistency of the compressed data, so the library should never
the consistency of the compressed data, so the library should never
crash even in case of corrupted input.
crash even in case of corrupted input.
...
@@ -401,7 +399,7 @@ ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
...
@@ -401,7 +399,7 @@ ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
because Z_BLOCK is used.
because Z_BLOCK is used.
If a preset dictionary is needed after this call (see inflateSetDictionary
If a preset dictionary is needed after this call (see inflateSetDictionary
below), inflate sets strm-adler to the adler32 checksum of the dictionary
below), inflate sets strm-
>
adler to the adler32 checksum of the dictionary
chosen by the compressor and returns Z_NEED_DICT; otherwise it sets
chosen by the compressor and returns Z_NEED_DICT; otherwise it sets
strm->adler to the adler32 checksum of all output produced so far (that is,
strm->adler to the adler32 checksum of all output produced so far (that is,
total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
...
@@ -478,7 +476,8 @@ ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
...
@@ -478,7 +476,8 @@ ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
16 to windowBits to write a simple gzip header and trailer around the
16 to windowBits to write a simple gzip header and trailer around the
compressed data instead of a zlib wrapper. The gzip header will have no
compressed data instead of a zlib wrapper. The gzip header will have no
file name, no extra data, no comment, no modification time (set to zero),
file name, no extra data, no comment, no modification time (set to zero),
no header crc, and the operating system will be set to 255 (unknown).
no header crc, and the operating system will be set to 255 (unknown). If a
gzip stream is being written, strm->adler is a crc32 instead of an adler32.
The memLevel parameter specifies how much memory should be allocated
The memLevel parameter specifies how much memory should be allocated
for the internal compression state. memLevel=1 uses minimum memory but
for the internal compression state. memLevel=1 uses minimum memory but
...
@@ -649,7 +648,8 @@ ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
...
@@ -649,7 +648,8 @@ ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
windowBits can also be greater than 15 for optional gzip decoding. Add
windowBits can also be greater than 15 for optional gzip decoding. Add
32 to windowBits to enable zlib and gzip decoding with automatic header
32 to windowBits to enable zlib and gzip decoding with automatic header
detection, or add 16 to decode only the gzip format (the zlib format will
detection, or add 16 to decode only the gzip format (the zlib format will
return a Z_DATA_ERROR).
return a Z_DATA_ERROR. If a gzip stream is being decoded, strm->adler is
a crc32 instead of an adler32.
inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
...
@@ -1189,7 +1189,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_stream FAR *strm, int windowBits,
...
@@ -1189,7 +1189,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_stream FAR *strm, int windowBits,
struct
internal_state
{
int
dummy
;};
/* hack for buggy compilers */
struct
internal_state
{
int
dummy
;};
/* hack for buggy compilers */
#endif
#endif
ZEXTERN
const
char
*
ZEXPORT
zError
OF
((
int
err
));
ZEXTERN
const
char
*
ZEXPORT
zError
OF
((
int
));
ZEXTERN
int
ZEXPORT
inflateSyncPoint
OF
((
z_streamp
z
));
ZEXTERN
int
ZEXPORT
inflateSyncPoint
OF
((
z_streamp
z
));
ZEXTERN
const
uLongf
*
ZEXPORT
get_crc_table
OF
((
void
));
ZEXTERN
const
uLongf
*
ZEXPORT
get_crc_table
OF
((
void
));
...
...
zlib/zutil.h
View file @
106ac5b0
...
@@ -189,9 +189,14 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
...
@@ -189,9 +189,14 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
# define NO_vsnprintf
# define NO_vsnprintf
# endif
# endif
#endif
#endif
#ifdef VMS
# define NO_vsnprintf
#endif
#ifdef HAVE_STRERROR
#ifdef HAVE_STRERROR
# ifndef VMS
extern
char
*
strerror
OF
((
int
));
extern
char
*
strerror
OF
((
int
));
# endif
# define zstrerror(errnum) strerror(errnum)
# define zstrerror(errnum) strerror(errnum)
#else
#else
# define zstrerror(errnum) ""
# define zstrerror(errnum) ""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment