home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / next / sysadmin / 6361 < prev    next >
Encoding:
Text File  |  1992-11-08  |  1.4 KB  |  36 lines

  1. Newsgroups: comp.sys.next.sysadmin
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!caen!destroyer!cs.ubc.ca!unixg.ubc.ca!kakwa.ucs.ualberta.ca!access.usask.ca!news
  3. From: eric@skatter.usask.ca
  4. Subject: Re: bash+3.0
  5. Message-ID: <1992Nov8.142415.23486@access.usask.ca>
  6. Sender: news@access.usask.ca (USENET News System)
  7. Nntp-Posting-Host: skatter.usask.ca
  8. Organization: University of Saskatchewan
  9. References: <BxD1C8.IGy@aplcenmp.apl.jhu.edu>
  10. Date: Sun, 8 Nov 1992 14:24:15 GMT
  11. Lines: 23
  12.  
  13. The automatic configuration script for bash pokes around in the file sytem
  14. looking for assorted `.h' files.  NeXT (in their infinite wisdom) moved
  15. things around so that the files aren't where the configuration script
  16. can find them.
  17.  
  18. A little tweak to the script and all is well.  Edit the file support/mksysdefs
  19. and look for the two lines that look like:
  20.  
  21. if [ -f /usr/include/sys/resource.h ]; then
  22. if [ -f /usr/include/sys/wait.h ]; then
  23.  
  24. and change them to:
  25.  
  26. if [ -f /usr/include/sys/resource.h -o -f /usr/include/bsd/sys/resource.h ]; then
  27. if [ -f /usr/include/sys/wait.h -o -f /usr/include/bsd/sys/wait.h ]; then
  28.  
  29. Then the configure script should work and bash should compile and run.
  30. I did this a few weeks ago, so I *hope* I havn't missed anything else. 
  31. --
  32. Eric Norum                     eric@skatter.usask.ca
  33. Research Engineer              phone: (306) 966-6308
  34. Accelerator Laboratory
  35. University of Saskatchewan
  36.