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