You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1999/12/03 23:11:36 UTC

cvs commit: apache-2.0/src/modules/mpm/prefork prefork.c

manoj       99/12/03 14:11:34

  Modified:    src/modules/mpm/dexter dexter.c
               src/modules/mpm/mpmt_pthread mpmt_pthread.c
               src/modules/mpm/prefork prefork.c
  Log:
  The Unix MPMs were depending on APR for signal.h, and broke. Add an
  explicit #include for it back in.
  
  Revision  Changes    Path
  1.61      +1 -0      apache-2.0/src/modules/mpm/dexter/dexter.c
  
  Index: dexter.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/dexter/dexter.c,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -d -u -r1.60 -r1.61
  --- dexter.c	1999/12/01 00:44:53	1.60
  +++ dexter.c	1999/12/03 22:11:18	1.61
  @@ -75,6 +75,7 @@
   #include <poll.h>
   #include <netinet/tcp.h> 
   #include <pthread.h>
  +#include <signal.h>
   
   /*
    * Actual definitions of config globals
  
  
  
  1.51      +1 -0      apache-2.0/src/modules/mpm/mpmt_pthread/mpmt_pthread.c
  
  Index: mpmt_pthread.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/mpmt_pthread/mpmt_pthread.c,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -d -u -r1.50 -r1.51
  --- mpmt_pthread.c	1999/12/01 00:44:56	1.50
  +++ mpmt_pthread.c	1999/12/03 22:11:22	1.51
  @@ -72,6 +72,7 @@
   
   #include <netinet/tcp.h> 
   #include <pthread.h>
  +#include <signal.h>
   
   /*
    * Actual definitions of config globals
  
  
  
  1.58      +1 -0      apache-2.0/src/modules/mpm/prefork/prefork.c
  
  Index: prefork.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/prefork/prefork.c,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -d -u -r1.57 -r1.58
  --- prefork.c	1999/12/01 00:45:00	1.57
  +++ prefork.c	1999/12/03 22:11:31	1.58
  @@ -109,6 +109,7 @@
   #ifdef HAVE_BSTRING_H
   #include <bstring.h>		/* for IRIX, FD_SET calls bzero() */
   #endif
  +#include <signal.h>
   
   /* config globals */