ben         97/12/01 04:10:17

  Modified:    src/main conf.h http_config.h
               src/os/win32 os.h
  Log:
  Commit some changes needed to keep the ASP module happy.
  
  Revision  Changes    Path
  1.162     +4 -0      apachen/src/main/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/conf.h,v
  retrieving revision 1.161
  retrieving revision 1.162
  diff -u -r1.161 -r1.162
  --- conf.h    1997/11/16 15:43:15     1.161
  +++ conf.h    1997/12/01 12:10:14     1.162
  @@ -785,7 +785,11 @@
   #include <process.h>
   #endif
   
  +#ifdef WIN32
  +#include "../regex/regex.h"
  +#else
   #include <regex.h>
  +#endif
   
   #ifdef HAVE_SYS_RESOURCE_H
   #include <sys/resource.h>
  
  
  
  1.57      +1 -1      apachen/src/main/http_config.h
  
  Index: http_config.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_config.h,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- http_config.h     1997/11/29 06:01:13     1.56
  +++ http_config.h     1997/12/01 12:10:15     1.57
  @@ -138,7 +138,7 @@
       configfile_t *config_file;       /* Config file structure from 
pcfg_openfile() */
   
       pool *pool;                      /* Pool to allocate new storage in */
  -    pool *temp_pool;         /* Pool for scratch memory; persists during
  +    struct pool *temp_pool;          /* Pool for scratch memory; persists 
during
                                 * configuration, but wiped before the first
                                 * request is served...
                                 */
  
  
  
  1.8       +3 -1      apachen/src/os/win32/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/os/win32/os.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- os.h      1997/11/16 15:43:19     1.7
  +++ os.h      1997/12/01 12:10:16     1.8
  @@ -14,7 +14,9 @@
   
   #define STATUS
   #define WIN32_LEAN_AND_MEAN
  -#define STRICT
  +#ifndef STRICT
  + #define STRICT
  +#endif
   #define NO_UNISTD_H
   #define NO_WRITEV
   #define NO_SETSID
  
  
  

Reply via email to