home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.next.software
- Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!news
- From: bil@cmn16.Stanford.EDU (Bill Schottstaedt)
- Subject: Re: AKCL and NeXTstep 3.0
- Message-ID: <1992Aug28.143747.2779@leland.Stanford.EDU>
- Sender: news@leland.Stanford.EDU (Mr News)
- Organization: DSO, Stanford University
- References: <6148@vtserf.cc.vt.edu>
- Date: Fri, 28 Aug 92 14:37:47 GMT
- Lines: 19
-
- I have recompiled AKCL (version 615 or so) under NeXT 3.0 and
- it works fine. I had to make two changes:
-
- In akcl/c/NeXTUnixsave.c, the declaration:
-
- extern struct section *getsectbyname(char *, char *);
-
- causes a fatal compiler error. The new declaration
- (in /NextDeveloper/Headers/bsd/lib.h) is:
-
- /* getsecbyname(3) */
- extern const struct section *getsectbyname(
- const char *segname,
- const char *sectname);
-
-
- Also, the library /usr/lib/libg.a is not included
- in the 3.0 release, so I removed the -lg switch
- from the LIBS statement in akcl/unixport/makefile.
-