README
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:7k
源码类别:

生物技术

开发平台:

C/C++

  1. This is the README for bzip2, a block-sorting file compressor, version
  2. 1.0.2.  This version is fully compatible with the previous public
  3. releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0 and 1.0.1.
  4. bzip2-1.0.2 is distributed under a BSD-style license.  For details,
  5. see the file LICENSE.
  6. Complete documentation is available in Postscript form (manual.ps),
  7. PDF (manual.pdf, amazingly enough) or html (manual_toc.html).  A
  8. plain-text version of the manual page is available as bzip2.txt.  
  9. A statement about Y2K issues is now included in the file Y2K_INFO.
  10. HOW TO BUILD -- UNIX
  11. Type `make'.  This builds the library libbz2.a and then the
  12. programs bzip2 and bzip2recover.  Six self-tests are run.
  13. If the self-tests complete ok, carry on to installation:
  14. To install in /usr/bin, /usr/lib, /usr/man and /usr/include, type
  15.    make install
  16. To install somewhere else, eg, /xxx/yyy/{bin,lib,man,include}, type 
  17.    make install PREFIX=/xxx/yyy
  18. If you are (justifiably) paranoid and want to see what 'make install'
  19. is going to do, you can first do
  20.    make -n install                      or
  21.    make -n install PREFIX=/xxx/yyy      respectively.
  22. The -n instructs make to show the commands it would execute, but
  23. not actually execute them.
  24. HOW TO BUILD -- UNIX, shared library libbz2.so.
  25. Do 'make -f Makefile-libbz2_so'.  This Makefile seems to work for
  26. Linux-ELF (RedHat 7.2 on an x86 box), with gcc.  I make no claims
  27. that it works for any other platform, though I suspect it probably
  28. will work for most platforms employing both ELF and gcc.
  29. bzip2-shared, a client of the shared library, is also built, but not
  30. self-tested.  So I suggest you also build using the normal Makefile,
  31. since that conducts a self-test.  A second reason to prefer the
  32. version statically linked to the library is that, on x86 platforms,
  33. building shared objects makes a valuable register (%ebx) unavailable
  34. to gcc, resulting in a slowdown of 10%-20%, at least for bzip2.
  35. Important note for people upgrading .so's from 0.9.0/0.9.5 to version
  36. 1.0.X.  All the functions in the library have been renamed, from (eg)
  37. bzCompress to BZ2_bzCompress, to avoid namespace pollution.
  38. Unfortunately this means that the libbz2.so created by
  39. Makefile-libbz2_so will not work with any program which used an older
  40. version of the library.  Sorry.  I do encourage library clients to
  41. make the effort to upgrade to use version 1.0, since it is both faster
  42. and more robust than previous versions.
  43. HOW TO BUILD -- Windows 95, NT, DOS, Mac, etc.
  44. It's difficult for me to support compilation on all these platforms.
  45. My approach is to collect binaries for these platforms, and put them
  46. on the master web page (http://sources.redhat.com/bzip2).  Look there.
  47. However (FWIW), bzip2-1.0.X is very standard ANSI C and should compile
  48. unmodified with MS Visual C.  If you have difficulties building, you
  49. might want to read README.COMPILATION.PROBLEMS.
  50. At least using MS Visual C++ 6, you can build from the unmodified
  51. sources by issuing, in a command shell: 
  52.    nmake -f makefile.msc
  53. (you may need to first run the MSVC-provided script VCVARS32.BAT
  54.  so as to set up paths to the MSVC tools correctly).
  55. VALIDATION
  56. Correct operation, in the sense that a compressed file can always be
  57. decompressed to reproduce the original, is obviously of paramount
  58. importance.  To validate bzip2, I used a modified version of Mark
  59. Nelson's churn program.  Churn is an automated test driver which
  60. recursively traverses a directory structure, using bzip2 to compress
  61. and then decompress each file it encounters, and checking that the
  62. decompressed data is the same as the original.  There are more details
  63. in Section 4 of the user guide.
  64. Please read and be aware of the following:
  65. WARNING:
  66.    This program (attempts to) compress data by performing several
  67.    non-trivial transformations on it.  Unless you are 100% familiar
  68.    with *all* the algorithms contained herein, and with the
  69.    consequences of modifying them, you should NOT meddle with the
  70.    compression or decompression machinery.  Incorrect changes can and
  71.    very likely *will* lead to disastrous loss of data.
  72. DISCLAIMER:
  73.    I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE
  74.    USE OF THIS PROGRAM, HOWSOEVER CAUSED.
  75.    Every compression of a file implies an assumption that the
  76.    compressed file can be decompressed to reproduce the original.
  77.    Great efforts in design, coding and testing have been made to
  78.    ensure that this program works correctly.  However, the complexity
  79.    of the algorithms, and, in particular, the presence of various
  80.    special cases in the code which occur with very low but non-zero
  81.    probability make it impossible to rule out the possibility of bugs
  82.    remaining in the program.  DO NOT COMPRESS ANY DATA WITH THIS
  83.    PROGRAM UNLESS YOU ARE PREPARED TO ACCEPT THE POSSIBILITY, HOWEVER
  84.    SMALL, THAT THE DATA WILL NOT BE RECOVERABLE.
  85.    That is not to say this program is inherently unreliable.  Indeed,
  86.    I very much hope the opposite is true.  bzip2 has been carefully
  87.    constructed and extensively tested.
  88. PATENTS:
  89.    To the best of my knowledge, bzip2 does not use any patented
  90.    algorithms.  However, I do not have the resources available to
  91.    carry out a full patent search.  Therefore I cannot give any
  92.    guarantee of the above statement.
  93. End of legalities.
  94. WHAT'S NEW IN 0.9.0 (as compared to 0.1pl2) ?
  95.    * Approx 10% faster compression, 30% faster decompression
  96.    * -t (test mode) is a lot quicker
  97.    * Can decompress concatenated compressed files
  98.    * Programming interface, so programs can directly read/write .bz2 files
  99.    * Less restrictive (BSD-style) licensing
  100.    * Flag handling more compatible with GNU gzip
  101.    * Much more documentation, i.e., a proper user manual
  102.    * Hopefully, improved portability (at least of the library)
  103. WHAT'S NEW IN 0.9.5 ?
  104.    * Compression speed is much less sensitive to the input
  105.      data than in previous versions.  Specifically, the very
  106.      slow performance caused by repetitive data is fixed.
  107.    * Many small improvements in file and flag handling.
  108.    * A Y2K statement.
  109. WHAT'S NEW IN 1.0.0 ?
  110.    See the CHANGES file.
  111. WHAT'S NEW IN 1.0.2 ?
  112.    See the CHANGES file.
  113. I hope you find bzip2 useful.  Feel free to contact me at
  114.    jseward@acm.org
  115. if you have any suggestions or queries.  Many people mailed me with
  116. comments, suggestions and patches after the releases of bzip-0.15,
  117. bzip-0.21, and bzip2 versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0 and 1.0.1,
  118. and the changes in bzip2 are largely a result of this feedback.
  119. I thank you for your comments.
  120. At least for the time being, bzip2's "home" is (or can be reached via)
  121. http://sources.redhat.com/bzip2.
  122. Julian Seward
  123. jseward@acm.org
  124. Cambridge, UK (and what a great town this is!)
  125. 18     July 1996 (version 0.15)
  126. 25   August 1996 (version 0.21)
  127.  7   August 1997 (bzip2, version 0.1)
  128. 29   August 1997 (bzip2, version 0.1pl2)
  129. 23   August 1998 (bzip2, version 0.9.0)
  130.  8     June 1999 (bzip2, version 0.9.5)
  131.  4     Sept 1999 (bzip2, version 0.9.5d)
  132.  5      May 2000 (bzip2, version 1.0pre8)
  133. 30 December 2001 (bzip2, version 1.0.2pre1)