From b94060ad7616b1820a48c471e42ca1e8eaed8fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yves=20R=C5=B1tschl=C3=A9?= Date: Fri, 15 Mar 2024 15:09:39 +0100 Subject: [PATCH] undef FD_SETSIZE to avoid compiler warning upon redefine --- common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common.h b/common.h index c8399e1..f94b743 100644 --- a/common.h +++ b/common.h @@ -5,6 +5,7 @@ * enough for the macros to adapt (http://support.microsoft.com/kb/111855) */ #ifdef __CYGWIN__ +#undef FD_SETSIZE #define FD_SETSIZE 4096 #endif