Subject: Re: zope-2.6.1 misfire
To: MLH <MLH@goathill.org>
From: Martin Husemann <martin@duskware.de>
List: tech-pkg
Date: 05/24/2003 13:59:06
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.

Martin