You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@hyperreal.org on 1998/01/23 00:23:45 UTC

cvs commit: apachen/src/main httpd.h

jim         98/01/22 15:23:45

  Modified:    src/main httpd.h
  Log:
  Work around CPP
  
  Revision  Changes    Path
  1.176     +1 -1      apachen/src/main/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/httpd.h,v
  retrieving revision 1.175
  retrieving revision 1.176
  diff -u -r1.175 -r1.176
  --- httpd.h	1998/01/22 23:11:59	1.175
  +++ httpd.h	1998/01/22 23:23:41	1.176
  @@ -922,7 +922,7 @@
   /* The optimized timeout code only works if we're not MULTITHREAD and we're
    * also not using a scoreboard file
    */
  -#if !defined (MULTITHREAD) &&
  +#if !defined (MULTITHREAD) && \
       (defined (USE_MMAP_SCOREBOARD) || defined (USE_SHMGET_SCOREBOARD))
   #define OPTIMIZE_TIMEOUTS
   #endif