Some versions of winsock2.h have pollfd struct and constants
authorYang Tse <yangsita@gmail.com>
Sat, 10 Nov 2007 04:23:15 +0000 (04:23 +0000)
committerYang Tse <yangsita@gmail.com>
Sat, 10 Nov 2007 04:23:15 +0000 (04:23 +0000)
lib/select.h

index a97947e..54c7c75 100644 (file)
 #undef  HAVE_POLL_FINE
 #define HAVE_POLL_FINE 1
 #define poll(x,y,z) WSAPoll((x),(y),(z))
+#if defined(_MSC_VER) && defined(POLLRDNORM)
+#define HAVE_STRUCT_POLLFD 1
+#endif
 #endif
 
 /*
  * Definition of pollfd struct and constants for platforms lacking them.
  */
 
-#ifndef HAVE_SYS_POLL_H
+#if !defined(HAVE_STRUCT_POLLFD) && !defined(HAVE_SYS_POLL_H)
 
 #define POLLIN      0x01
 #define POLLPRI     0x02