You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by or...@apache.org on 2001/05/10 19:21:07 UTC

cvs commit: apr/include/arch/unix networkio.h

orlikowski    01/05/10 10:21:06

  Modified:    include/arch/unix networkio.h
  Log:
  Minor header inclusion bug.
  
  Revision  Changes    Path
  1.42      +4 -1      apr/include/arch/unix/networkio.h
  
  Index: networkio.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/unix/networkio.h,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- networkio.h	2001/04/05 18:56:07	1.41
  +++ networkio.h	2001/05/10 17:21:01	1.42
  @@ -69,11 +69,14 @@
   #if APR_HAVE_SYS_UIO_H
   #include <sys/uio.h>
   #endif
  -#if APR_HAVE_SYS_POLL_H
  +#ifdef HAVE_SYS_POLL_H
   #include <sys/poll.h>
   #endif
   #ifdef HAVE_POLL_H
   #include <poll.h>
  +#endif
  +#ifdef HAVE_SYS_SELECT_H
  +#include <sys/select.h>
   #endif
   #if APR_HAVE_ERRNO_H
   #include <errno.h>