This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[3.4-BIB]fixincludes failure on solaris
- From: Jan Hubicka <jh at suse dot cz>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 16 Dec 2002 16:04:47 +0100
- Subject: [3.4-BIB]fixincludes failure on solaris
Hi,
server.c requires SIGKILL to be defined that is defined by signal.h
not included by system.h. That fails on solaris.
What is the proper fix? SHould I include signal.h in system.h and add
configure bits for that one?
Index: server.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fixinc/server.c,v
retrieving revision 1.20.32.1
diff -c -3 -p -r1.20.32.1 server.c
*** server.c 1 Dec 2002 05:43:06 -0000 1.20.32.1
--- server.c 16 Dec 2002 15:00:29 -0000
***************
*** 46,51 ****
--- 46,52 ----
* If you do not wish that, delete this exception notice.
*/
+ #include <signal.h>
#include "fixlib.h"
#include "server.h"