trawick     00/11/27 11:11:43

  Modified:    src/os/unix unixd.h
  Log:
  <sys/resource.h> requires <sys/time.h> first on some systems
  (e.g., FreeBSD 3.4)
  
  Revision  Changes    Path
  1.17      +3 -0      apache-2.0/src/os/unix/unixd.h
  
  Index: unixd.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/unix/unixd.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- unixd.h   2000/10/31 00:47:24     1.16
  +++ unixd.h   2000/11/27 19:11:40     1.17
  @@ -61,6 +61,9 @@
   
   #include "httpd.h"
   #include "http_config.h"
  +#ifdef HAVE_SYS_TIME_H
  +#include <sys/time.h>
  +#endif
   #ifdef HAVE_SYS_RESOURCE_H
   #include <sys/resource.h>
   #endif
  
  
  

Reply via email to