home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 11 / AUCD11B.iso / LANGUAGES / WraithSet / AwkStuff / 1TSRC / README2 < prev   
Text File  |  2000-01-23  |  2KB  |  65 lines

  1. /****************************************************************
  2. Copyright (C) Lucent Technologies 1997
  3. All Rights Reserved
  4.  
  5. Permission to use, copy, modify, and distribute this software and
  6. its documentation for any purpose and without fee is hereby
  7. granted, provided that the above copyright notice appear in all
  8. copies and that both that the copyright notice and this
  9. permission notice and warranty disclaimer appear in supporting
  10. documentation, and that the name Lucent Technologies or any of
  11. its entities not be used in advertising or publicity pertaining
  12. to distribution of the software without specific, written prior
  13. permission.
  14.  
  15. LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  16. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
  17. IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
  18. SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  20. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  22. THIS SOFTWARE.
  23. ****************************************************************/
  24.  
  25. This is the version of awk described in "The AWK Programming Language",
  26. by Al Aho, Brian Kernighan, and Peter Weinberger
  27. (Addison-Wesley, 1988, ISBN 0-201-07981-X).
  28.  
  29. Changes, mostly bug fixes and occasional enhancements, are listed
  30. in FIXES.  If you distribute this code further, please please please
  31. distribute FIXES with it.  If you find errors, please report them
  32. to bwk@bell-labs.com.  Thanks.
  33.  
  34. ======================================
  35.  
  36. This version compiled under Risc OS 4 with GCC 2.95.2 and UnixLib3.8.
  37. As Ld seems to fall over, a separate Link! and linkfile is used.
  38.  
  39. The following changes to the source were made:
  40.  
  41. In main.c
  42.  
  43. Added 
  44. /* GCW Jan 2000 */
  45. int     __riscosify_control = 0x300;
  46. int     __uname_control = 1;
  47.  
  48. to cope with filenames containing /.
  49.  
  50. In proto.h
  51.  
  52. Added
  53. /* GCW Jan 2000 */
  54. #define getline _getline
  55.  
  56. to avoid name clash in Unixlib.
  57.  
  58. Remember to set the system variable UnixEnv$OneTrue$nonametrans:
  59.  
  60. Set UnixEnv$OneTrue$nonametrans ""
  61.  
  62. before using OneTrue.
  63.  
  64. -- Gavin Wraith (gavin@wraith.u-net.com)
  65.