Module: wine Branch: master Commit: 41cc117b3f37ab4b9b4ac8a815cd2a496d38fb4b URL: https://gitlab.winehq.org/wine/wine/-/commit/41cc117b3f37ab4b9b4ac8a815cd2a4...
Author: Billy Laws blaws05@gmail.com Date: Sat Jun 3 21:57:42 2023 +0100
server: Avoid using SOL_IPX to detect whether IPX is supported.
---
server/sock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/server/sock.c b/server/sock.c index 088e6d63079..34be6ea22ef 100644 --- a/server/sock.c +++ b/server/sock.c @@ -62,6 +62,7 @@
#ifdef HAVE_NETIPX_IPX_H # include <netipx/ipx.h> +# define HAS_IPX #elif defined(HAVE_LINUX_IPX_H) # ifdef HAVE_ASM_TYPES_H # include <asm/types.h> @@ -70,8 +71,6 @@ # include <linux/types.h> # endif # include <linux/ipx.h> -#endif -#if defined(SOL_IPX) || defined(SO_DEFAULT_HEADERS) # define HAS_IPX #endif