compiling under debian woody
Brought to you by:
emmerson
I am trying to compile the current cvs version under debian GNU/Linux woody using 2.95.4., X86
architecture, GNU C Library stable release version 2.2.5
I am getting this error:
In file included from xport.c:36:
../../../port/misc/signal.h:56: two or more data types in declaration of `sigemptyset'
It seems to miss a semicolon (;) in /ports/misc/signal.h on line 51:
up to now:
#ifdef UD_NO_SIGACTION_STRUCT
struct sigaction {
void (*sa_handler)();
sigset_t sa_mask;
int sa_flags;
}
#endif
should be:
#ifdef UD_NO_SIGACTION_STRUCT
struct sigaction {
void (*sa_handler)();
sigset_t sa_mask;
int sa_flags;
};
#endif
Logged In: YES
user_id=68072
better fix id in ports/misc/signal.h.in, or it will be overwritten