[PATCH 2/3] configure: Stop checking for poll(2).

Huw Davies huw at codeweavers.com
Mon Oct 4 09:40:13 CDT 2021


In most places we're not dealing with its absence correctly anyway.

Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 configure.ac                |  1 -
 programs/winedbg/gdbproxy.c | 11 +----------
 2 files changed, 1 insertion(+), 11 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7e85e46b87b..6e82e4fbb8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2144,7 +2144,6 @@ AC_CHECK_FUNCS(\
 	lstat \
 	mach_continuous_time \
 	pipe2 \
-	poll \
 	port_create \
 	posix_fadvise \
 	posix_fallocate \
diff --git a/programs/winedbg/gdbproxy.c b/programs/winedbg/gdbproxy.c
index fb875cd1b29..b64abd6f205 100644
--- a/programs/winedbg/gdbproxy.c
+++ b/programs/winedbg/gdbproxy.c
@@ -53,11 +53,6 @@
 # include <unistd.h>
 #endif
 
-/* if we don't have poll support on this system
- * we won't provide gdb proxy support here...
- */
-#ifdef HAVE_POLL
-
 #include "debugger.h"
 
 #include "windef.h"
@@ -2311,11 +2306,9 @@ static int gdb_remote(unsigned flags, unsigned port)
     wait(NULL);
     return 0;
 }
-#endif
 
 int gdb_main(int argc, char* argv[])
 {
-#ifdef HAVE_POLL
     unsigned gdb_flags = 0, port = 0;
     char *port_end;
 
@@ -2350,8 +2343,6 @@ int gdb_main(int argc, char* argv[])
     if (dbg_active_attach(argc, argv) == start_ok ||
         dbg_active_launch(argc, argv) == start_ok)
         return gdb_remote(gdb_flags, port);
-#else
-    fprintf(stderr, "GdbProxy mode not supported on this platform\n");
-#endif
+
     return -1;
 }
-- 
2.23.0




More information about the wine-devel mailing list