home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0458.ZIP / CCE_0458.PD / PAT12U7B / README < prev    next >
Text File  |  1992-07-10  |  4KB  |  101 lines

  1. This version of patch contains modifications made by the Free Software
  2. Foundation, summarized in the file ChangeLog.  Primarily they are to
  3. support the unified context diff format that GNU diff can produce, and
  4. to support making GNU Emacs-style backup files.  They also include
  5. fixes for some bugs.  The FSF is distributing this version of patch
  6. independently because as of this writing, Larry Wall has not released
  7. a new version of patch since mid-1988.  I have heard that he has been
  8. too busy working on other things, like Perl.
  9.  
  10. Here is a wish list of some projects to improve patch:
  11.  
  12. 1.  Correctly handle files and patchfiles that contain NUL characters.
  13. This is hard to do straightforwardly; it would be less work to
  14. adopt a kind of escape encoding internally.
  15. Let ESC be a "control prefix".  ESC @ stands for NUL.  ESC [ stands for ESC.
  16. You need to crunch this when reading input (replace fgets),
  17. and when writing the output file (replace fputs),
  18. but otherwise everything can go along as it does now.
  19. Be careful to handle reject files correctly;
  20. I think they are currently created using `write', not `fputs'.
  21.  
  22. 2.  Correctly handle patches produced by GNU diff for files that do
  23. not end with a newline.
  24.  
  25. Please send bug reports for this version of patch to
  26. bug-gnu-utils@prep.ai.mit.edu as well as to Larry Wall (lwall@netlabs.com).
  27.  --djm@gnu.ai.mit.edu (David MacKenzie)
  28.  
  29.             Patch Kit, Version 2.0
  30.  
  31.             Copyright (c) 1988, Larry Wall
  32.  
  33. You may copy the patch kit in whole or in part as long as you don't try to
  34. make money off it, or pretend that you wrote it.
  35. --------------------------------------------------------------------------
  36.  
  37. Please read all the directions below before you proceed any further, and
  38. then follow them carefully.  Failure to do so may void your warranty. :-)
  39.  
  40. After you have unpacked your kit, you should have all the files listed
  41. in MANIFEST.
  42.  
  43. Installation
  44.  
  45. 1)  Run Configure.  This will figure out various things about your system.
  46.     Some things Configure will figure out for itself, other things it will
  47.     ask you about.  It will then proceed to make config.h, config.sh, and
  48.     Makefile.
  49.  
  50.     You might possibly have to trim # comments from the front of Configure
  51.     if your sh doesn't handle them, but all other # comments will be taken
  52.     care of.
  53.  
  54.     If you don't have sh, you'll have to rip the prototype of config.h out
  55.     of Configure and generate the defines by hand.
  56.  
  57. 2)  Glance through config.h to make sure system dependencies are correct.
  58.     Most of them should have been taken care of by running the Configure script.
  59.  
  60.     If you have any additional changes to make to the C definitions, they
  61.     can be done in the Makefile, or in config.h.  Bear in mind that they may
  62.     get undone next time you run Configure.
  63.  
  64. 3)  make
  65.  
  66.     This will attempt to make patch in the current directory.
  67.  
  68. 4)  make install
  69.  
  70.     This will put patch into a public directory (normally /usr/local/bin).
  71.     It will also try to put the man pages in a reasonable place.  It will not
  72.     nroff the man page, however.
  73.  
  74. 5)  Read the manual entry before running patch.
  75.  
  76. 6)  IMPORTANT!  Help save the world!  Communicate any problems and
  77.     suggested patches to me, lwall@netlabs.com (Larry Wall),
  78.     so we can keep the world in sync.  If you have a problem, there's
  79.     someone else out there who either has had or will have the same problem.
  80.  
  81.     If possible, send in patches such that the patch program will apply them.
  82.     Context diffs are the best, then normal diffs.  Don't send ed scripts--
  83.     I've probably changed my copy since the version you have.
  84.  
  85.     Watch for patch patches in net.sources.bugs.  Patches will generally be
  86.     in a form usable by the patch program.  If you are just now bringing up
  87.     patch and aren't sure how many patches there are, write to me and I'll
  88.     send any you don't have.  Your current patch level is shown in patchlevel.h.
  89.  
  90.  
  91. NEW FEATURES IN THIS RELEASE
  92.  
  93. (Correct) support for 4.3bsd-style context diffs.
  94. Files can be created from scratch.
  95. You can specify a fuzz-factor for context matching.
  96. You can force patch to ask no questions.
  97. You can specify how much of the leading pathname to strip off filenames.
  98. Uses a Configure script for greater portability.
  99. You are now asked if you want to apply a reversed patch.
  100. No limit (apart from memory) on the size of hunks.
  101.