Module: wine Branch: master Commit: da4e359a700209c840490483f5337a14aa1d448f URL: https://gitlab.winehq.org/wine/wine/-/commit/da4e359a700209c840490483f5337a1...
Author: Billy Laws blaws05@gmail.com Date: Sat Jun 3 21:57:42 2023 +0100
ws2_32: Avoid using SOL_IPX to detect whether IPX is supported.
---
dlls/ws2_32/unixlib.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/ws2_32/unixlib.c b/dlls/ws2_32/unixlib.c index 4646e8ff26f..5cb64aad258 100644 --- a/dlls/ws2_32/unixlib.c +++ b/dlls/ws2_32/unixlib.c @@ -66,6 +66,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> @@ -74,8 +75,6 @@ # include <linux/types.h> # endif # include <linux/ipx.h> -#endif -#if defined(SOL_IPX) || defined(SO_DEFAULT_HEADERS) # define HAS_IPX #endif