home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / zlib / ChangeLog < prev    next >
Text File  |  1996-09-28  |  11KB  |  235 lines

  1. Fri Aug 16 16:07:38 1996  Norbert Kiesel  <nk@col.sw-ley.de>
  2.  
  3.     * Makefile.in (installdirs): new (empty) target
  4.  
  5.         ChangeLog file for zlib
  6.  
  7. Changes in 1.0.3 (2 Jul 96)
  8. - use z_streamp instead of z_stream *, which is now a far pointer in MSDOS
  9.   small and medium models; this makes the library incompatible with previous
  10.   versions for these models. (No effect in large model or on other systems.)
  11. - return OK instead of BUF_ERROR if previous deflate call returned with
  12.   avail_out as zero but there is nothing to do
  13. - added memcmp for non STDC compilers
  14. - define NO_DUMMY_DECL for more Mac compilers (.h files merged incorrectly)
  15. - define __32BIT__ if __386__ or i386 is defined (pb. with Watcom and SCO)
  16. - better check for 16-bit mode MSC (avoids problem with Symantec)
  17.  
  18. Changes in 1.0.2 (23 May 96)
  19. - added Windows DLL support
  20. - added a function zlibVersion (for the DLL support)
  21. - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model)
  22. - Bytef is define's instead of typedef'd only for Borland C
  23. - avoid reading uninitialized memory in example.c
  24. - mention in README that the zlib format is now RFC1950
  25. - updated Makefile.dj2
  26. - added algorithm.doc
  27.  
  28. Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
  29. - fix array overlay in deflate.c which sometimes caused bad compressed data
  30. - fix inflate bug with empty stored block
  31. - fix MSDOS medium model which was broken in 0.99
  32. - fix deflateParams() which could generated bad compressed data.
  33. - Bytef is define'd instead of typedef'ed (work around Borland bug)
  34. - added an INDEX file
  35. - new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),
  36.   Watcom (Makefile.wat), Amiga SAS/C (Makefile.sas)
  37. - speed up adler32 for modern machines without auto-increment
  38. - added -ansi for IRIX in configure
  39. - static_init_done in trees.c is an int
  40. - define unlink as delete for VMS
  41. - fix configure for QNX
  42. - add configure branch for SCO and HPUX
  43. - avoid many warnings (unused variables, dead assignments, etc...)
  44. - no fdopen for BeOS
  45. - fix the Watcom fix for 32 bit mode (define FAR as empty)
  46. - removed redefinition of Byte for MKWERKS
  47. - work around an MWKERKS bug (incorrect merge of all .h files)
  48.  
  49. Changes in 0.99 (27 Jan 96)
  50. - allow preset dictionary shared between compressor and decompressor
  51. - allow compression level 0 (no compression)
  52. - add deflateParams in zlib.h: allow dynamic change of compression level
  53.   and compression strategy.
  54. - test large buffers and deflateParams in example.c
  55. - add optional "configure" to build zlib as a shared library
  56. - suppress Makefile.qnx, use configure instead
  57. - fixed deflate for 64-bit systems (detected on Cray)
  58. - fixed inflate_blocks for 64-bit systems (detected on Alpha)
  59. - declare Z_DEFLATED in zlib.h (possible parameter for deflateInit2)
  60. - always return Z_BUF_ERROR when deflate() has nothing to do
  61. - deflateInit and inflateInit are now macros to allow version checking
  62. - prefix all global functions and types with z_ with -DZ_PREFIX
  63. - make falloc completely reentrant (inftrees.c)
  64. - fixed very unlikely race condition in ct_static_init
  65. - free in reverse order of allocation to help memory manager
  66. - use zlib-1.0/* instead of zlib/* inside the tar.gz
  67. - make zlib warning-free with "gcc -O3 -Wall -Wwrite-strings -Wpointer-arith
  68.   -Wconversion -Wstrict-prototypes -Wmissing-prototypes"
  69. - allow gzread on concatenated .gz files
  70. - deflateEnd now returns Z_DATA_ERROR if it was premature
  71. - deflate is finally (?) fully deterministic (no matches beyond end of input)
  72. - Document Z_SYNC_FLUSH
  73. - add uninstall in Makefile
  74. - Check for __cpluplus in zlib.h
  75. - Better test in ct_align for partial flush
  76. - avoid harmless warnings for Borland C++
  77. - initialize hash_head in deflate.c
  78. - avoid warning on fdopen (gzio.c) for HP cc -Aa
  79. - include stdlib.h for STDC compilers
  80. - include errno.h for Cray
  81. - ignore error if ranlib doesn't exist
  82. - call ranlib twice for NeXTSTEP
  83. - use exec_prefix instead of prefix for libz.a
  84. - renamed ct_* as _tr_* to avoid conflict with applications
  85. - clear z->msg in inflateInit2 before any error return
  86. - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
  87. - fixed typo in zconf.h (_GNUC__ => __GNUC__)
  88. - check for WIN32 in zconf.h and zutil.c (avoid farmalloc in 32-bit mode)
  89. - fix typo in Make_vms.com (f$trnlnm -> f$getsyi)
  90. - in fcalloc, normalize pointer if size > 65520 bytes
  91. - don't use special fcalloc for 32 bit Borland C++
  92. - use STDC instead of __GO32__ to avoid redeclaring exit, calloc, etc...
  93. - use Z_BINARY instead of BINARY
  94. - document that gzclose after gzdopen will close the file
  95. - allow "a" as mode in gzopen.
  96. - fix error checking in gzread
  97. - allow skipping .gz extra-field on pipes
  98. - added reference to Perl interface in README
  99. - put the crc table in FAR data (I dislike more and more the medium model :)
  100. - added get_crc_table
  101. - added a dimension to all arrays (Borland C can't count).
  102. - workaround Borland C bug in declaration of inflate_codes_new & inflate_fast
  103. - guard against multiple inclusion of *.h (for precompiled header on Mac)
  104. - Watcom C pretends to be Microsoft C small model even in 32 bit mode.
  105. - don't use unsized arrays to avoid silly warnings by Visual C++:
  106.      warning C4746: 'inflate_mask' : unsized array treated as  '__far'
  107.      (what's wrong with far data in far model?).
  108. - define enum out of inflate_blocks_state to allow compilation with C++
  109.  
  110. Changes in 0.95 (16 Aug 95)
  111. - fix MSDOS small and medium model (now easier to adapt to any compiler)
  112. - inlined send_bits
  113. - fix the final (:-) bug for deflate with flush (output was correct but
  114.   not completely flushed in rare occasions).
  115. - default window size is same for compression and decompression
  116.   (it's now sufficient to set MAX_WBITS in zconf.h).
  117. - voidp -> voidpf and voidnp -> voidp (for consistency with other
  118.   typedefs and because voidnp was not near in large model).
  119.  
  120. Changes in 0.94 (13 Aug 95)
  121. - support MSDOS medium model
  122. - fix deflate with flush (could sometimes generate bad output)
  123. - fix deflateReset (zlib header was incorrectly suppressed)
  124. - added support for VMS
  125. - allow a compression level in gzopen()
  126. - gzflush now calls fflush
  127. - For deflate with flush, flush even if no more input is provided.
  128. - rename libgz.a as libz.a
  129. - avoid complex expression in infcodes.c triggering Turbo C bug
  130. - work around a problem with gcc on Alpha (in INSERT_STRING)
  131. - don't use inline functions (problem with some gcc versions)
  132. - allow renaming of Byte, uInt, etc... with #define.
  133. - avoid warning about (unused) pointer before start of array in deflate.c
  134. - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
  135. - avoid reserved word 'new' in trees.c
  136.  
  137. Changes in 0.93 (25 June 95)
  138. - temporarily disable inline functions
  139. - make deflate deterministic
  140. - give enough lookahead for PARTIAL_FLUSH
  141. - Set binary mode for stdin/stdout in minigzip.c for OS/2
  142. - don't even use signed char in inflate (not portable enough)
  143. - fix inflate memory leak for segmented architectures
  144.  
  145. Changes in 0.92 (3 May 95)
  146. - don't assume that char is signed (problem on SGI)
  147. - Clear bit buffer when starting a stored block
  148. - no memcpy on Pyramid
  149. - suppressed inftest.c
  150. - optimized fill_window, put longest_match inline for gcc
  151. - optimized inflate on stored blocks.
  152. - untabify all sources to simplify patches
  153.  
  154. Changes in 0.91 (2 May 95)
  155. - Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
  156. - Document the memory requirements in zconf.h
  157. - added "make install"
  158. - fix sync search logic in inflateSync
  159. - deflate(Z_FULL_FLUSH) now works even if output buffer too short
  160. - after inflateSync, don't scare people with just "lo world"
  161. - added support for DJGPP
  162.  
  163. Changes in 0.9 (1 May 95)
  164. - don't assume that zalloc clears the allocated memory (the TurboC bug
  165.   was Mark's bug after all :)
  166. - let again gzread copy uncompressed data unchanged (was working in 0.71)
  167. - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
  168. - added a test of inflateSync in example.c
  169. - moved MAX_WBITS to zconf.h because users might want to change that.
  170. - document explicitly that zalloc(64K) on MSDOS must return a normalized
  171.   pointer (zero offset)
  172. - added Makefiles for Microsoft C, Turbo C, Borland C++
  173. - faster crc32()
  174.  
  175. Changes in 0.8 (29 April 95)
  176. - added fast inflate (inffast.c)
  177. - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
  178.   is incompatible with previous versions of zlib which returned Z_OK.
  179. - work around a TurboC compiler bug (bad code for b << 0, see infutil.h)
  180.   (actually that was not a compiler bug, see 0.81 above)
  181. - gzread no longer reads one extra byte in certain cases
  182. - In gzio destroy(), don't reference a freed structure
  183. - avoid many warnings for MSDOS
  184. - avoid the ERROR symbol which is used by MS Windows
  185.  
  186. Changes in 0.71 (14 April 95)
  187. - Fixed more MSDOS compilation problems :( There is still a bug with
  188.   TurboC large model.
  189.  
  190. Changes in 0.7 (14 April 95)
  191. - Added full inflate support.
  192. - Simplified the crc32() interface. The pre- and post-conditioning
  193.   (one's complement) is now done inside crc32(). WARNING: this is
  194.   incompatible with previous versions; see zlib.h for the new usage.
  195.  
  196. Changes in 0.61 (12 April 95)
  197. - workaround for a bug in TurboC. example and minigzip now work on MSDOS.
  198.  
  199. Changes in 0.6 (11 April 95)
  200. - added minigzip.c
  201. - added gzdopen to reopen a file descriptor as gzFile
  202. - added transparent reading of non-gziped files in gzread.
  203. - fixed bug in gzread (don't read crc as data)
  204. - fixed bug in destroy (gzio.c) (don't return Z_STREAM_END for gzclose).
  205. - don't allocate big arrays in the stack (for MSDOS)
  206. - fix some MSDOS compilation problems
  207.  
  208. Changes in 0.5:
  209. - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but
  210.   not yet Z_FULL_FLUSH.
  211. - support decompression but only in a single step (forced Z_FINISH)
  212. - added opaque object for zalloc and zfree.
  213. - added deflateReset and inflateReset
  214. - added a variable zlib_version for consistency checking.
  215. - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
  216.   Added Z_FILTERED and Z_HUFFMAN_ONLY constants.
  217.  
  218. Changes in 0.4:
  219. - avoid "zip" everywhere, use zlib instead of ziplib.
  220. - suppress Z_BLOCK_FLUSH, interpret Z_PARTIAL_FLUSH as block flush
  221.   if compression method == 8.
  222. - added adler32 and crc32
  223. - renamed deflateOptions as deflateInit2, call one or the other but not both
  224. - added the method parameter for deflateInit2.
  225. - added inflateInit2
  226. - simplied considerably deflateInit and inflateInit by not supporting
  227.   user-provided history buffer. This is supported only in deflateInit2
  228.   and inflateInit2.
  229.  
  230. Changes in 0.3:
  231. - prefix all macro names with Z_
  232. - use Z_FINISH instead of deflateEnd to finish compression.
  233. - added Z_HUFFMAN_ONLY
  234. - added gzerror()
  235.