Module: wine Branch: master Commit: 09f7b203bbb27eaad4e6a8318d03bb3a61e238c2 URL: https://gitlab.winehq.org/wine/wine/-/commit/09f7b203bbb27eaad4e6a8318d03bb3...
Author: Zebediah Figura zfigura@codeweavers.com Date: Sun May 29 19:58:04 2022 -0500
ws2_32: Check for AI_ALL at compile time.
NetBSD does not provide it.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51843
---
dlls/ws2_32/unixlib.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/ws2_32/unixlib.c b/dlls/ws2_32/unixlib.c index 88845e43ad2..e0e1263e025 100644 --- a/dlls/ws2_32/unixlib.c +++ b/dlls/ws2_32/unixlib.c @@ -122,7 +122,9 @@ static const int addrinfo_flag_map[][2] = #ifdef AI_V4MAPPED MAP( AI_V4MAPPED ), #endif +#ifdef AI_ALL MAP( AI_ALL ), +#endif MAP( AI_ADDRCONFIG ), };