home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / GNUZIP.ZIP / FILE_ID.DIZ < prev    next >
Text File  |  1980-01-03  |  2KB  |  40 lines

  1. GZIP v1.0.3; compression utility designed to
  2. be a replacement over compress
  3.  
  4.  algorithms.  The GNU Project
  5. uses it as the standard compression program for its system.
  6.  
  7. gzip currently uses by default the LZ77 algorithm used in zip 1.9 (the
  8. portable pkzip compatible archiver). The gzip format was however
  9. designed to accommodate several compression algorithms.
  10.  
  11. gunzip can currently decompress files created by gzip, zip (with
  12. restrictions), compress or pack. The detection of the input format is
  13. automatic.  When using the first two formats, gunzip checks a 32 bit
  14. CRC. For pack, gunzip checks the uncompressed length.  The 'compress'
  15. format was not designed to allow consistency checks. However gunzip
  16. is sometimes able to detect a bad .Z file because there is some
  17. redundancy in the .Z compression format. If you get an error
  18. when uncompressing a .Z file, do not assume that the .Z file is
  19. correct simply because the standard uncompress does not complain.
  20. This generally means that the standard uncompress does not check its
  21. input, and happily generates garbage output.
  22.  
  23. gzip produces files with a .z extension. This was chosen to mimic the
  24. 'compress' .Z extension. Using exactly the same extension would have
  25. caused too much confusion. Using a completely different extension
  26. would have forced changes in other programs such as GNU tar (which has
  27. a -z option).  The .z extension is already used by the 'pack'
  28. Huffman encoder, but gunzip is able to decompress packed files.
  29.  
  30. Several planned features are not yet supported (see the file TODO).
  31. See the file INSTALL for installation instructions. See the file NEWS
  32. for a summary of changes since 0.5.
  33.  
  34. WARNINGS about broken optimizers:
  35.  
  36. - on the NeXT, "cc -finline-functions" is broken.  gzip produces
  37.   valid .z files but they are much too large because the string
  38.   matching code misses most matches. Use "cc -O" instead.
  39.  
  40. - on the