summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/select.c
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmcurl/select.c')
-rw-r--r--Utilities/cmcurl/select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmcurl/select.c b/Utilities/cmcurl/select.c
index 2bec8cb..51adbcf 100644
--- a/Utilities/cmcurl/select.c
+++ b/Utilities/cmcurl/select.c
@@ -220,7 +220,7 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms)
{
int r;
-#ifndef _POLL_EMUL_H_
+#if defined(HAVE_POLL) && !defined(_POLL_EMUL_H_)
do {
r = poll(ufds, nfds, timeout_ms);
} while((r == -1) && (errno == EINTR));