stoddard    99/06/01 13:09:58

  Modified:    src/include ap_config.h
  Log:
  Fix WIN32 compile. ULONG_MAX (defined in limits.h) was not being picked up. 
Compiles on AIX (4.3.2) and NT.
  
  Revision  Changes    Path
  1.259     +1 -2      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.258
  retrieving revision 1.259
  diff -u -r1.258 -r1.259
  --- ap_config.h       1999/05/17 08:00:06     1.258
  +++ ap_config.h       1999/06/01 20:09:57     1.259
  @@ -1027,7 +1027,6 @@
   #include <pwd.h>
   #include <grp.h>
   #include <fcntl.h>
  -#include <limits.h>
   #define closesocket(s) close(s)
   #ifndef O_BINARY
   #define O_BINARY (0)
  @@ -1039,7 +1038,7 @@
   #include <io.h>
   #include <fcntl.h>
   #endif /* ndef WIN32 */
  -
  +#include <limits.h>
   #include <time.h>            /* for ctime */
   #ifdef WIN32
   #define strftime(s,max,format,tm)  os_strftime(s,max,format,tm)
  
  
  

Reply via email to