This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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"
  


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]