You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/06/14 21:26:38 UTC

cvs commit: apache-apr/include apr_general.h apr_network_io.h

rbb         99/06/14 12:26:37

  Modified:    include  apr_general.h apr_network_io.h
  Log:
  Changes to get things to compile more cleanly cross-platform.
  
  Revision  Changes    Path
  1.16      +8 -0      apache-apr/include/apr_general.h
  
  Index: apr_general.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/include/apr_general.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- apr_general.h	1999/06/07 19:04:04	1.15
  +++ apr_general.h	1999/06/14 19:26:37	1.16
  @@ -57,6 +57,14 @@
   #include "apr_config.h"
   #endif
   
  +#ifdef HAVE_STDIO_H
  +#include <stdio.h>
  +#endif
  +
  +#ifdef HAVE_UNISTD_H
  +#include <unistd.h>
  +#endif
  +
   #ifdef HAVE_MALLOC_H
   #include <malloc.h>
   #endif
  
  
  
  1.24      +5 -0      apache-apr/include/apr_network_io.h
  
  Index: apr_network_io.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/include/apr_network_io.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- apr_network_io.h	1999/06/10 12:15:38	1.23
  +++ apr_network_io.h	1999/06/14 19:26:37	1.24
  @@ -56,8 +56,13 @@
   #ifndef APR_NETWORK_IO_H
   #define APR_NETWORK_IO_H
   
  +#ifdef WIN32
  +#include <winsock2.h>
  +#endif
  +
   #include "apr_general.h"
   #include "apr_errno.h"
  +#include <time.h>
   
   #ifdef __cplusplus
   extern "C" {