home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / archiver / freeze.README < prev    next >
Encoding:
Text File  |  1994-01-07  |  1.7 KB  |  45 lines

  1.         FREEZE / MELT COMPRESSION PROGRAM
  2.  
  3. This is Alpha version. It is tested under ISC 2.2, Xenix, SunOS.
  4.  
  5. The following preprocessor symbols control the compilation of Freeze
  6. package:
  7.  
  8.     o BITS                  The size of hash table (default is 18,
  9.                 reducing to 14 gives a 50% speeddown).
  10.     o COMPAT                Turns on backwards compatibility
  11.                 with Freeze 1.0
  12.     o M_XENIX & M_I286      Makes arrays < 65536 bytes each
  13.     o BSD4_2        Allow long filenames ( > 14 characters) &
  14.                 Call setlinebuf(stderr)
  15.     o INT_SIG               signal is int (*)() unstead of void
  16.     o MSDOS                 Turns off some UNIX-dependencies
  17.                 and MSDOS' ones - vice versa
  18.                 !!! It's important !!!
  19.                 If your MSDOS' C compiler do support
  20.                 inline functions, define DO_INLINE.
  21.                 This will cause the main loop to be
  22.                 replaced with a call of memcmp, which
  23.                 will be represented as 'repz cmpsb'.
  24.     o FAST                  Forces the Get_Next_Match routine
  25.                 to be inline. This gives additional
  26.                 percents of speedup.
  27.     o __TURBOC__            For compiling under TURBO C
  28.  
  29.     o __i386__              When compiling under GNU C causes
  30.                 some fixed register allocations,
  31.                 which give better code.
  32.  
  33. Please! If your computer supports the string operations, try to write
  34. "asm" instructions (GNU style) which realize the right-to-left memory
  35. comparison (s1, s2, length) in minimum number of clock cycles.
  36. If a noticeable (5% or more) speedup is gained, please send me a message.
  37.  
  38. Other preprocessor symbols (DEBUG, GATHER_STAT) are for internal use
  39. only.
  40.  
  41. The format of frozen (2.X) file is incompatible with that of frozen (1.0),
  42. but if this package is compiled with -DCOMPAT switch, you will able to
  43. unpack frozen (1.0) files, if you have them.
  44.  
  45.