home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / next / software / 1366 < prev    next >
Encoding:
Text File  |  1992-08-29  |  967 b   |  31 lines

  1. Newsgroups: comp.sys.next.software
  2. Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!news
  3. From: bil@cmn16.Stanford.EDU (Bill Schottstaedt)
  4. Subject: Re: AKCL and NeXTstep 3.0
  5. Message-ID: <1992Aug28.143747.2779@leland.Stanford.EDU>
  6. Sender: news@leland.Stanford.EDU (Mr News)
  7. Organization: DSO, Stanford University
  8. References: <6148@vtserf.cc.vt.edu>
  9. Date: Fri, 28 Aug 92 14:37:47 GMT
  10. Lines: 19
  11.  
  12. I have recompiled AKCL (version 615 or so) under NeXT 3.0 and
  13. it works fine.  I had to make two changes:
  14.  
  15. In akcl/c/NeXTUnixsave.c, the declaration:
  16.  
  17.   extern struct section *getsectbyname(char *, char *);
  18.  
  19. causes a fatal compiler error.  The new declaration
  20. (in /NextDeveloper/Headers/bsd/lib.h) is:
  21.  
  22.   /* getsecbyname(3)    */
  23.   extern const struct section *getsectbyname(
  24.      const char *segname, 
  25.      const char *sectname);
  26.  
  27.  
  28. Also, the library /usr/lib/libg.a is not included
  29. in the 3.0 release, so I removed the -lg switch
  30. from the LIBS statement in akcl/unixport/makefile.
  31.