From mboxrd@z Thu Jan 1 00:00:00 1970 From: wkt@tuhs.org (Warren Toomey) Date: Wed, 7 May 2008 19:28:42 +1000 Subject: [Unix-jun72] Readme written: needs checking In-Reply-To: <20080507084043.GQ2793@myrtle.kent.ac.uk> References: <20080507013359.GA78359@minnie.tuhs.org> <20080507084043.GQ2793@myrtle.kent.ac.uk> Message-ID: <20080507092842.GA94457@minnie.tuhs.org> On Wed, May 07, 2008 at 09:40:43AM +0100, P.A.Osborne wrote: > On OS X 10.5.3 > simh builds fine however: > building apout fails (everything else in tools compiles) with: Thanks Paul, I'll try to fix it tomorrow. Is there a compiler defined preprocessor symbol that I can add which covers OSX. For example: #if !defined(__FreeBSD__) && !defined(__NetBSD__) && \ !defined(__OpenBSD__) && !defined(__linux__) # define NEED_INT_N #endif Is there __OSX__ or similar? If there is, simply add && !defined(__OSX__) to that second line, which is around line 71 in tools/apout/defines.h. Thanks, Warren