Subject: Re: zope-2.6.1 misfire
To: Martin Husemann <martin@duskware.de>
From: MLH <mlh@goathill.org>
List: tech-pkg
Date: 05/24/2003 07:21:21
> 
> On Sat, May 24, 2003 at 12:17:31AM +0000, MLH wrote:
> > #if defined(__unix__) || defined(unix)
> > 
> > What might be the correct way to test for 'unix' here?
> 
> None. There is no defined semantic associated with "unix". The proper
> way is to have autoconfig test explicitly for the feature this code is 
> interested in, the simple fix is to just add "|| defined(__NetBSD__)",
> but that is just as bogus as the original #if.

That's what I suspected. Was hoping there was a better way of doing
this. I'll post a patch soon.

Thanks