You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@locus.apache.org on 2000/07/03 16:24:40 UTC

cvs commit: apache-1.3/src/include ap_config.h

wrowe       00/07/03 07:24:39

  Modified:    src/include ap_config.h
  Log:
    Although Apache's mak/dsp projects properly add src/os/win32 to the
    includes list, the 3rd party module authors don't necessarily do so.
  
    This patch fixes the reliance on os/win32/os.h for the rest of the
    1.3.x lifetime, but we shouldn't do so for Apache 2.0
  
  Obtained from:  Keith Wannamaker [Keith@Wannamaker.org]
  Reviewed by:	William Rowe
  
  Revision  Changes    Path
  1.291     +4 -0      apache-1.3/src/include/ap_config.h
  
  Index: ap_config.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/ap_config.h,v
  retrieving revision 1.290
  retrieving revision 1.291
  diff -u -r1.290 -r1.291
  --- ap_config.h	2000/06/22 22:57:29	1.290
  +++ ap_config.h	2000/07/03 14:24:38	1.291
  @@ -110,7 +110,11 @@
   #define ENUM_BITFIELD(e,n,w)  e n : w
   #endif
   
  +#ifdef WIN32
  +#include "../os/win32/os.h"
  +#else
   #include "os.h"
  +#endif
   
   /* Define one of these according to your system. */
   #if defined(MINT)