1 |
27 |
unneback |
2002-10-10 Andrew Lunn
|
2 |
|
|
|
3 |
|
|
* include/zutil.h:
|
4 |
|
|
* include/zlib.h:
|
5 |
|
|
* src/inflate.c (inflate): Use the CRC function from the CRC
|
6 |
|
|
package.
|
7 |
|
|
* src/crc32.c: Removed.
|
8 |
|
|
|
9 |
|
|
2002-09-09 Mark Salter
|
10 |
|
|
|
11 |
|
|
* inflate.c (inflate): Fix CRC calculation over multiple invocations
|
12 |
|
|
with same output buffer.
|
13 |
|
|
|
14 |
|
|
2002-02-18 Jesper Skov
|
15 |
|
|
|
16 |
|
|
* src/infblock.c: Applied fix for double-free which could cause a
|
17 |
|
|
zlib crash. Fixed indentation.
|
18 |
|
|
|
19 |
|
|
2001-10-15 Gary Thomas
|
20 |
|
|
|
21 |
|
|
* include/zconf.h:
|
22 |
|
|
* cdl/compress_zlib.cdl:
|
23 |
|
|
Define new interface CYGINT_COMPRESS_ZLIB_LOCAL_ALLOC which allows
|
24 |
|
|
users of this code (applications) to provide their own allocators.
|
25 |
|
|
|
26 |
|
|
2001-04-02 Jesper Skov
|
27 |
|
|
|
28 |
|
|
* tests/zlib2.c: Removed BAD_CRC state.
|
29 |
|
|
|
30 |
|
|
2001-03-12 Jesper Skov
|
31 |
|
|
|
32 |
|
|
* src/inflate.c: Remove BAD_CRC state. Do separate CRC for
|
33 |
|
|
gzippped data.
|
34 |
|
|
* include/zlib.h: Removed Z_BAD_CRC hack. Rename crc32 function.
|
35 |
|
|
* src/crc32.c: Include zlib.h header from
|
36 |
|
|
include/cyg/compress. Rename function.
|
37 |
|
|
* cdl/compress_zlib.cdl: Build the crc32.c file.
|
38 |
|
|
|
39 |
|
|
2001-03-09 Jesper Skov
|
40 |
|
|
|
41 |
|
|
* src/compress.c: Include zlib.h header from include/cyg/compress.
|
42 |
|
|
* src/uncompr.c: Same.
|
43 |
|
|
* tests/zlib1.c: Added.
|
44 |
|
|
* tests/zlib2.c: Added.
|
45 |
|
|
* cdl/compress_zlib.cdl: Compile tests. Compile
|
46 |
|
|
files holding compress/uncompress functions.
|
47 |
|
|
|
48 |
|
|
* cdl/compress_zlib.cdl: Don't warn about prototypes when building.
|
49 |
|
|
|
50 |
|
|
2001-03-08 Jesper Skov
|
51 |
|
|
|
52 |
|
|
* cdl/compress_zlib.cdl: Add isoinfra requirement.
|
53 |
|
|
|
54 |
|
|
* include/zconf.h: Override STDC check.
|
55 |
|
|
|
56 |
|
|
* include/zlib.h: Added new BAD_CRC return type. Comment out crc32
|
57 |
|
|
declaration.
|
58 |
|
|
|
59 |
|
|
* src/inflate.c: Added additional states to allow for gzip header
|
60 |
|
|
decoding.
|
61 |
|
|
|
62 |
|
|
* src/adler32.c: Include zlib.h header from include/cyg/compress.
|
63 |
|
|
* src/zutil.h: Same.
|
64 |
|
|
|
65 |
|
|
* Import zlib 1.1.3 sources, but leave out some sub
|
66 |
|
|
directories. See src/README.eCos for details.
|
67 |
|
|
|
68 |
|
|
//===========================================================================
|
69 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
70 |
|
|
// -------------------------------------------
|
71 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
72 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
73 |
|
|
//
|
74 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
75 |
|
|
// the terms of the GNU General Public License as published by the Free
|
76 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
77 |
|
|
//
|
78 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
79 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
80 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
81 |
|
|
// for more details.
|
82 |
|
|
//
|
83 |
|
|
// You should have received a copy of the GNU General Public License along
|
84 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
85 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
86 |
|
|
//
|
87 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
88 |
|
|
// or inline functions from this file, or you compile this file and link it
|
89 |
|
|
// with other works to produce a work based on this file, this file does not
|
90 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
91 |
|
|
// License. However the source code for this file must still be made available
|
92 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
93 |
|
|
//
|
94 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
95 |
|
|
// this file might be covered by the GNU General Public License.
|
96 |
|
|
//
|
97 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
98 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
99 |
|
|
// -------------------------------------------
|
100 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
101 |
|
|
//===========================================================================
|