https://bugs.winehq.org/show_bug.cgi?id=51843
--- Comment #4 from Zeb Figura z.figura12@gmail.com --- (In reply to Zeb Figura from comment #3)
(In reply to Austin English from comment #2)
dlls/ws2_32/unixlib.c: In function ‘unix_gethostbyaddr’: dlls/ws2_32/unixlib.c:865:16: warning: implicit declaration of function ‘gethostbyaddr_r’; did you mean ‘gethostbyaddr’? [-Wimplicit-function-declaration] while (gethostbyaddr_r( addr, params->len, unix_family, &stack_host, unix_buffer, ^~~~~~~~~~~~~~~ gethostbyaddr dlls/ws2_32/unixlib.c: In function ‘unix_gethostbyname’: dlls/ws2_32/unixlib.c:916:12: warning: implicit declaration of function ‘gethostbyname_r’; did you mean ‘gethostbyname2’? [-Wimplicit-function-declaration] while (gethostbyname_r( params->name, &stack_host, unix_buffer, unix_size, &unix_host, &locerr ) == ERANGE) ^~~~~~~~~~~~~~~ gethostbyname2
We have a configure check for these, even in wine 6.18, and as far as I can tell through experimentation it should be working. Does NetBSD provide those functions?
Never mind, I see bug 40865. I'll see if I can find a way to check that the symbol actually compiles...