From f66b828a97c58fafd8bf58df5bc9e56b2b51dd12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Thu, 18 May 2017 16:31:13 +0200 Subject: [PATCH] curl: use select instead of poll The way curl interacts with our poll() emulation on top of select() leads to problems while establishing a connection. --- repos/libports/src/lib/curl/curl_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/libports/src/lib/curl/curl_config.h b/repos/libports/src/lib/curl/curl_config.h index 4c2d870fe..230dac80a 100644 --- a/repos/libports/src/lib/curl/curl_config.h +++ b/repos/libports/src/lib/curl/curl_config.h @@ -511,10 +511,10 @@ /* #undef HAVE_PK11_CREATEGENERICOBJECT */ /* Define to 1 if you have a working poll function. */ -#define HAVE_POLL 1 +/* #undef HAVE_POLL */ /* If you have a fine poll */ -#define HAVE_POLL_FINE 1 +/* #undef HAVE_POLL_FINE */ /* Define to 1 if you have the header file. */ /* #undef HAVE_POLL_H */