home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / bsd / 5188 < prev    next >
Encoding:
Text File  |  1992-09-08  |  1.2 KB  |  31 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!uvaarpa!cv3.cv.nrao.edu!laphroaig!cflatter
  3. From: cflatter@nrao.edu (Chris Flatters)
  4. Subject: Re: Anyone ported GNU-make to 386BSD ?
  5. Message-ID: <1992Sep6.015703.23272@nrao.edu>
  6. Sender: news@nrao.edu
  7. Reply-To: cflatter@nrao.edu
  8. Organization: NRAO
  9. References: <1992Sep6.004052.19476@Informatik.TU-Muenchen.DE>
  10. Date: Sun, 6 Sep 1992 01:57:03 GMT
  11. Lines: 18
  12.  
  13. In article 19476@Informatik.TU-Muenchen.DE, gebhart@Informatik.TU-Muenchen.DE (Ralf Gebhart) writes:
  14. >I need gmake to install the GNU-netfax package. It would be much work
  15. >to rewrite the package to be compatible to usual make.
  16. >After playing aroung with some defines I got gmake compiled but it 
  17. >keeps core-dumping.
  18.  
  19. That's the easy problem: you need to make sure that the files that reference
  20. glob() include <glob.h> and not "glob/glob.h".  The glob_t structure declared
  21. in "glob/glob.h" is two words shorter than the one used by the BSD glob() so
  22. glob() clobbers some local variables.
  23.  
  24. The one problem I haven't sorted out yet is the fact that GNU make calls
  25. setgid() in an invalid context.  This causes problems if you invoke make
  26. from emacs.
  27.  
  28.     Chris Flatters
  29.     cflatter@nrao.edu
  30.  
  31.