manoj       99/07/09 13:30:17

  Modified:    mpm/src/include scoreboard.h
               mpm/src/modules/mpm/mpmt_pthread acceptlock.c mpmt_pthread.c
  Log:
  Prevent pthread.h from showing up in the Makefile dependancies when we
  rerun "make depend"
  
  Revision  Changes    Path
  1.2       +1 -1      apache-2.0/mpm/src/include/scoreboard.h
  
  Index: scoreboard.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/src/include/scoreboard.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -u -r1.1 -r1.2
  --- scoreboard.h      1999/06/18 18:39:28     1.1
  +++ scoreboard.h      1999/07/09 20:30:13     1.2
  @@ -57,7 +57,7 @@
   
   #ifndef APACHE_SCOREBOARD_H
   #define APACHE_SCOREBOARD_H
  -#include "pthread.h"
  +#include <pthread.h>
   #ifdef __cplusplus
   extern "C" {
   #endif
  
  
  
  1.4       +1 -1      apache-2.0/mpm/src/modules/mpm/mpmt_pthread/acceptlock.c
  
  Index: acceptlock.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/src/modules/mpm/mpmt_pthread/acceptlock.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -d -u -r1.3 -r1.4
  --- acceptlock.c      1999/07/07 15:09:58     1.3
  +++ acceptlock.c      1999/07/09 20:30:15     1.4
  @@ -78,7 +78,7 @@
   #include <sys/shm.h>
   #endif
    
  -#include "pthread.h" 
  +#include <pthread.h> 
   
   /* TODO: all these calls have to be ap_ prefixed, right? */
   /* Number of cross-process locks we're managing */
  
  
  
  1.5       +1 -1      
apache-2.0/mpm/src/modules/mpm/mpmt_pthread/mpmt_pthread.c
  
  Index: mpmt_pthread.c
  ===================================================================
  RCS file: 
/home/cvs/apache-2.0/mpm/src/modules/mpm/mpmt_pthread/mpmt_pthread.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -d -u -r1.4 -r1.5
  --- mpmt_pthread.c    1999/07/07 15:16:43     1.4
  +++ mpmt_pthread.c    1999/07/09 20:30:15     1.5
  @@ -72,7 +72,7 @@
   
   #include "http_accept.h"
   #include <netinet/tcp.h> 
  -#include "pthread.h" 
  +#include <pthread.h> 
   
   /*
    * Actual definitions of config globals
  
  
  

Reply via email to