From 70082db8491ee215681fd55c2b19ce5b2c676bdf Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 19 Dec 2017 11:14:06 -0800 Subject: [PATCH] Fixed bug 4003 - HAVE_POLL undefined in SDL_poll.c, making it impossible to use. tomwardio HAVE_POLL is correctly defined in SDL_config.h when running configure. However, in the only place where it's used, it's undefined at the start of the file. --- src/core/unix/SDL_poll.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/unix/SDL_poll.c b/src/core/unix/SDL_poll.c index b970a7a0869ae..b7f139dbcaf77 100644 --- a/src/core/unix/SDL_poll.c +++ b/src/core/unix/SDL_poll.c @@ -24,7 +24,6 @@ #include "SDL_assert.h" #include "SDL_poll.h" -#undef HAVE_POLL #ifdef HAVE_POLL #include #else