cvs commit: apache-1.3/src/os/bs2000 os.h

1999-07-26 Thread martin
martin  99/07/26 00:49:00

  Modified:src/os/bs2000 os.h
  Log:
  [BS2000] os.h doesn't need to include ap_config.h any longer.
  
  Revision  ChangesPath
  1.19  +0 -2  apache-1.3/src/os/bs2000/os.h
  
  Index: os.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/os.h,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- os.h  1999/07/07 07:46:23 1.18
  +++ os.h  1999/07/26 07:48:59 1.19
  @@ -9,8 +9,6 @@
* and prototypes of OS specific functions defined in os.c or os-inline.c
*/
   
  -#include ap_config.h
  -
   #if !defined(INLINE)  defined(USE_GNU_INLINE)
   /* Compiler supports inline, so include the inlineable functions as
* part of the header
  
  
  


cvs commit: apache-1.3/src/os/bs2000 os.h

1999-03-11 Thread martin
martin  99/03/11 01:57:36

  Modified:src/os/bs2000 os.h
  Log:
  Fix prototype for changed os_fork() function
  
  Revision  ChangesPath
  1.16  +1 -1  apache-1.3/src/os/bs2000/os.h
  
  Index: os.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/os.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- os.h  1999/01/08 23:46:43 1.15
  +++ os.h  1999/03/11 09:57:36 1.16
  @@ -37,6 +37,6 @@
* to use request_rec here... */
   struct request_rec;
   extern int ap_checkconv(struct request_rec *r);
  -extern pid_t os_fork(void);
  +extern pid_t os_fork(const char *user);
   
   #endif /*! APACHE_OS_H*/
  
  
  


cvs commit: apache-1.3/src/os/bs2000 os.h

1998-01-31 Thread martin
martin  98/01/31 15:52:50

  Modified:src/os/bs2000 os.h
  Log:
  Fix include problem for BS2000 compilation
  
  Revision  ChangesPath
  1.3   +1 -1  apache-1.3/src/os/bs2000/os.h
  
  Index: os.h
  ===
  RCS file: /home/cvs/apache-1.3/src/os/bs2000/os.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- os.h  1998/01/26 16:46:17 1.2
  +++ os.h  1998/01/31 23:52:49 1.3
  @@ -6,7 +6,7 @@
* and prototypes of OS specific functions defined in os.c or os-inline.c
*/
   
  -#include httpd.h
  +#include conf.h
   
   #if !defined(INLINE)  defined(USE_GNU_INLINE)
   /* Compiler supports inline, so include the inlineable functions as