pspp-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: compile break


From: Jason Stover
Subject: Re: compile break
Date: Sat, 4 Aug 2007 23:03:34 -0400
User-agent: Mutt/1.5.10i

On Sun, Aug 05, 2007 at 09:59:52AM +0800, John Darrington wrote:
> I can only guess this has something to do with the way "bool" is
> #defined 
> Something which is included by settings.c subsequent to settings.h
> must be redefining it.
> 
> Perhaps you can compile this file with -E and try to find out what's
> going on.

I ran gcc -E. As you guessed, most of the breaks are caused by this
kind of thing:

_Bool get_safer_mode (void);

Then later:

bool
get_safer_mode (void)
{
  return safer_mode;
}

I suppose there should be a statement somewhere to
#define bool _Bool, or vice versa, but it isn't included
soon enough.

I can attach a complete list of the busted declarations,
or fix it myself. I don't want to stomp on someone else's
work, so I'll wait for approval before changing anything
myself.

-Jason





reply via email to

[Prev in Thread] Current Thread [Next in Thread]