On a Solaris system, getaddrinfo is not found during the AC_CHECK_FUNC test, because the libs required for getaddrinfo have not been found on Solaris yet. By moving the AC_CHECK_FUNC for getaddrinfo, below where libsocket and libnsl are checked, getaddrinfo is now found on Solaris, and I'm able to resolve a host and render a page with wine running mozilla.exe.
Comments?
--- wine.ORIG/configure.ac 2007-04-16 08:10:24.000000000 -0400 +++ wine/configure.ac 2007-04-19 09:14:59.156193000 -0400 @@ -1165,7 +1165,6 @@ ftruncate \ futimes \ futimesat \ - getaddrinfo \ getdirentries \ gethostbyname \ getnameinfo \ @@ -1247,6 +1246,8 @@ AC_CHECK_LIB(resolv,inet_aton) fi
+AC_CHECK_FUNCS(getaddrinfo) + dnl **** Check for types ****
AC_C_CONST