[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: akcl and NeXTStep 3.0
>> I tried to compile it under NeXTSTep 3.0 ... this is what I got:
>>
>> ... lots stuff left out ...
>>
>> Stop.
>> *** Exit 1
>> Stop.
>>
>>
>> so apparently it doesn't compile under 3.0 ! Did anybody look at this
>> yet?
Try the following:
================ Patch Posting ==============================================
Path: ads.com!decwrl!sun-barr!olivea!uunet!stanford.edu!leland.Stanford.EDU!news
From: bil@cmn16.Stanford.EDU (Bill Schottstaedt)
Newsgroups: comp.sys.next.software
Subject: Re: AKCL and NeXTstep 3.0
Message-ID: <1992Aug28.143747.2779@leland.Stanford.EDU>
Date: 28 Aug 92 14:37:47 GMT
References: <6148@vtserf.cc.vt.edu>
Sender: news@leland.Stanford.EDU (Mr News)
Organization: DSO, Stanford University
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.
================ Patch Posting ==============================================