mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add comment explaining that autoconf's failure to find getaddrinfo()
on Windows is now a feature, not a bug.
This commit is contained in:
7
configure
vendored
7
configure
vendored
@ -14550,8 +14550,11 @@ done
|
||||
|
||||
|
||||
|
||||
# system's version of getaddrinfo(), if any, may be used only if we found
|
||||
# a definition for struct addrinfo; see notes in src/include/getaddrinfo.h
|
||||
# System's version of getaddrinfo(), if any, may be used only if we found
|
||||
# a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
|
||||
# (Note: the AC_REPLACE_FUNCS probe fails on Windows, where the available
|
||||
# versions of getaddrinfo don't follow normal C call protocol. This is OK
|
||||
# because we want to use our own getaddrinfo.c on Windows anyway.)
|
||||
if test x"$ac_cv_type_struct_addrinfo" = xyes ; then
|
||||
|
||||
for ac_func in getaddrinfo
|
||||
|
Reference in New Issue
Block a user