home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / n / nulib324.zip / README < prev   
Text File  |  1993-03-16  |  5KB  |  104 lines

  1. NuLib v3.23 README
  2.  
  3. Recent history:
  4.  
  5. NuLib v3.24 (January 1993)
  6. - Improved MS-DOS filename fixing (now enforce "8 chars '.' 3 chars")
  7. - Fixed bug in LZW decompressor
  8. NuLib v3.23 (December 1992)
  9. - Minor bug fixes for the MS-DOS version (Dale G. Shields)
  10. NuLib v3.22 (September 1992)
  11. - Added "compress file as if it were a disk" code (provided by somebody
  12.   whose name I just lost).  Seems to work, but it's not 100% tested.
  13. - Faster compression
  14. - Updated filetype abbreviations
  15. NuLib v3.21
  16. - Minor fixes
  17. NuLib v3.2 (April 1992):
  18. - Lots of minor bug fixes.  (I was getting lost in the version numbers so
  19.   I just upped it to 3.2).  Of importance are the bug fixes to the LZW-II
  20.   decoder and EFT (Expanded Fundamental Types) awareness.
  21.  
  22. NuLib v3.14 (November 1991)
  23. - Finished fixing NeXT probs.  Really. (Chris Osborn w/push from Bruce Kahn)
  24. - Fixed some minor bugs (Larry W. Virden)
  25. NuLib v3.13
  26. - Repaired XENIX directory stuff in "nuadd.c" (Morgan Davis)
  27. NuLib v3.12
  28. - Fixed problem with table clears on non-LZW blocks (Frank Petroski)
  29. NuLib v3.11
  30. - Added some stuff to make the NeXT happy (Chris Osborn)
  31. NuLib v3.1 (October 1991)
  32. - GS/ShrinkIt LZW-II uncompression (finally!)
  33. - All ShrinkIt compression/uncompression routines are about 15% faster
  34. - Better compatibility with System V, especially the AT&T 3B2
  35.  
  36. Nulib v3.03 (February 1991)
  37. - Fixed XENIX problems with includes and libs (Ron Higgins).
  38. - Fixed bug in directory expansion (Larry W. Virden).
  39. NuLib v3.02
  40. - Silenced screaming about bad dates (Larry W. Virden).
  41. - Fixed glitches in nulib.lnk and nulib.mak (Bruce Kahn).
  42. NuLib v3.01
  43. - Fixed non-compression bug in ShrinkIt LZW (Scott Blackman).
  44. NuLib v3.0 (September 1990)
  45. - ShrinkIt LZW compression
  46. - UNIX 12-bit and 16-bit compression
  47. - New archive listing format (similar to ARC and ZOO)
  48.  
  49. ==============================================================================
  50.  
  51. Things work much better if you read the documentation file (now available
  52. on the archive site... sorry I didn't put it up sooner).  If you want to
  53. use UNIX compress to store files, READ THE DOCUMENTATION FIRST.  Not only
  54. does it tell you how to do it, but it has some warnings about compatibility.
  55.  
  56. To compile this on a UNIX-type system, edit the file "nudefs.h".  Several
  57. systems are predefined; the default is a BSD UNIX system.  If you want to run
  58. this on something other than BSD, comment out the #define statements (using
  59. "/*" and "*/"), and uncomment the appropriate statements (several systems are
  60. defined... if yours is an AT&T System V system, try the defines for Amdahl
  61. UTS).  Then, type "make" to execute the Makefile.  If all goes well, you will
  62. be left with an executable file called "nulib".  If all does not go well,
  63. double check "nudefs.h".  You may need to deal with the HAS_EFT stuff,
  64. especially if your compiler complains that "mode_t" or "off_t" are undefined.
  65. Send some mail to me if you can't get it to work at all.
  66.  
  67. To make the MS-DOS version, use the nulib.mak and nulib.lnk files with MS C
  68. (supplied by Bruce Kahn).  To make the APW C version (NOT Orca/C), put all
  69. the files in one directory, and make a subdirectory called "OBJ".  Put the
  70. "linked.scr" and "linker.scr" files in OBJ, and then "make.apw".  This will
  71. compile all the files.  When it finishes, change to OBJ and "alink
  72. linked.scr" (standard linker) or "alink linker.scr" (ZapLink).  The makefile
  73. used to do this automatically, but with only 1.25MB of RAM you have to exit
  74. APW to purge all the memory used by the compiler, and and then restart APW
  75. and run the linker.
  76.  
  77. In both cases, BE SURE to modify "nudefs.h" first.  If you don't, the
  78. compilation will halt in "numain.c" on a line which reminds you to change
  79. "nudefs.h" (I tended to forget about this).  Also, under APW make sure all
  80. the file types are set to SRC, and the auxtype to CC.  These are changed with
  81. the commands "filetype" and "change", respectively.
  82.  
  83. Please send bug reports, ideas, or gripes to fadden@uts.amdahl.com, or to
  84. one of the addresses mentioned in the documentation or under the "-hw"
  85. option.
  86.  
  87. Known bugs:
  88.  - Under some systems, using UNIX compress on a file which does not compress
  89. will cause the archive's EOF to be larger than it should be.  This slack
  90. space will be used up if you add more files to the archive (with NuLib
  91. anyway; no guarantees about ShrinkIt or GS/ShrinkIt, but there's no reason
  92. why they shouldn't work).
  93.  
  94. (just to make things clear: if the file being compressed doesn't get any
  95. smaller, the compression halts and the file is simply stored uncompressed.
  96. Because of the way compress works, on some systems the space that would
  97. have been occupied by more compressed data is left attached to the file.
  98. The ShrinkIt compression does not suffer from this problem.  If you add
  99. more stuff to the file, NuLib will fill the slack space first, NOT just
  100. append to the end of the file).
  101.  
  102. I can be reached at fadden@uts.amdahl.com
  103.  
  104.