From: Gurusamy Sarathy Date: Sat, 20 Feb 1999 00:27:01 +0000 (+0000) Subject: do poll() emulation unless HAS_POLL && I_POLL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=69077c198dfdd5c66fda335f6260797625fad59f;p=p5sagit%2Fp5-mst-13.2.git do poll() emulation unless HAS_POLL && I_POLL p4raw-id: //depot/perl@2989 --- diff --git a/ext/IO/poll.h b/ext/IO/poll.h index d17edff..c5cdd7f 100644 --- a/ext/IO/poll.h +++ b/ext/IO/poll.h @@ -10,11 +10,8 @@ #ifndef POLL_H # define POLL_H -#if defined(I_POLL) || defined(POLLWRBAND) +#if (defined(HAS_POLL) && defined(I_POLL)) || defined(POLLWRBAND) # include -# ifndef HAS_POLL -# define HAS_POLL -# endif #else #ifdef HAS_SELECT