home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / unix / bsd / 8556 < prev    next >
Encoding:
Text File  |  1992-11-08  |  3.1 KB  |  90 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!zaphod.mps.ohio-state.edu!usc!elroy.jpl.nasa.gov!ames!kronos.arc.nasa.gov!iscnvx!netcomsv!netcom.com!alm
  3. From: alm@netcom.com (Andrew Moore)
  4. Subject: Re: [386bsd] patches for bash 1.12
  5. Message-ID: <1992Nov7.023401.10026@netcom.com>
  6. Organization: Netcom - Online Communication Services  (408 241-9760 guest) 
  7. References: <5TZTTB2w165w@tsoft.sf-bay.org>
  8. Date: Sat, 7 Nov 1992 02:34:01 GMT
  9. Lines: 79
  10.  
  11. In article <5TZTTB2w165w@tsoft.sf-bay.org> bbs.barfeau@tsoft.sf-bay.org (David Fox) writes:
  12. >Has anyone successfully compiled bash version 1.12 for 386bsd?  Could
  13. >you email me those patches or tell me where I could get them?  I got
  14. >the thing from GNU last night but it doesn't exactly compile correctly.
  15.  
  16. here's some old postings:
  17.  
  18. From: cflatter@nrao.edu (Chris Flatters)
  19. Subject: Bash (Was: Help with posting news under BSD/386 wa)
  20. Message-ID: <1992Jul23.215524.29293@nrao.edu>
  21. Sender: news@nrao.edu
  22. Reply-To: cflatter@nrao.edu
  23. Organization: NRAO
  24. References: <1992Jul23.181019.2902@mks.com>
  25. Date: Thu, 23 Jul 1992 21:55:24 GMT
  26. Lines: 19
  27.  
  28. In article 2902@mks.com, fredw@mks.com (Fred Walter) writes:
  29. >I suggest you replace the Bourne Shell that comes with 386BSD 0.1 with
  30. >GNU's Bash.
  31. >
  32. >No, I don't know if it will easily compile under 386BSD 0.1. 
  33.  
  34. Yes it will.  The only problem is that the autoconfiguration procedures
  35. mistakenly think that 386BSD is a USGr3 system.  I was too lazy to
  36. find out what the problem was and just fixed up the bash-Makefile
  37. that is generated: just change OS from USG to Bsd; remove the -DUSGr3
  38. and remove -lPW.
  39.  
  40. Alternatively, I think that there is a bash binary in the etc01 archive.
  41.  
  42.     Chris Flatters
  43.     cflatter@nrao.edu
  44.  
  45.  
  46.  
  47. From: chet@odin.INS.CWRU.Edu (Chet Ramey)
  48. Subject: Re: Bash (Was: Help with posting news under BSD/386 wa)
  49. Message-ID: <1992Jul24.195432.29759@usenet.ins.cwru.edu>
  50. Sender: news@usenet.ins.cwru.edu
  51. Nntp-Posting-Host: odin.ins.cwru.edu
  52. Organization: Case Western Reserve University, Cleveland, OH (USA)
  53. References: <1992Jul23.181019.2902@mks.com> <1992Jul23.215524.29293@nrao.edu>
  54. Date: Fri, 24 Jul 92 19:54:32 GMT
  55. Lines:       30
  56.  
  57. In article <1992Jul23.215524.29293@nrao.edu> cflatter@nrao.edu writes:
  58.  
  59. >Yes it will.  The only problem is that the autoconfiguration procedures
  60. >mistakenly think that 386BSD is a USGr3 system.
  61.  
  62. (It actually doesn't find anything it recognizes, so it defaults to
  63. `generic' 386 Unix -- System V.3.)
  64.  
  65. Try adding this to the `i386' section of machines.h (with the rest of
  66. the i386 descriptions).  This is what I currently have for Bash 1.13.
  67.  
  68. /* BSDI BSD/386 running on a 386 or 486. */
  69. #  if !defined (done386) && defined (bsdi)
  70. #    define done386
  71. #    define M_MACHINE "i386"
  72. #    define M_OS Bsd
  73. #    define HAVE_SYS_SIGLIST
  74. #    define HAVE_SETLINEBUF
  75. #    define HAVE_GETGROUPS
  76. #    define HAVE_VFPRINTF
  77. #    define HAVE_STRERROR
  78. #    define VOID_SIGHANDLER
  79. #    define HAVE_DIRENT
  80. #  endif /* !done386 && bsdi */
  81. -- 
  82. ``The use of history as therapy means the corruption of history as history.''
  83.     -- Arthur Schlesinger
  84.  
  85. Chet Ramey, Case Western Reserve University    Internet: chet@po.CWRU.Edu
  86.  
  87.  
  88.  
  89.  
  90.