WIN32 availability of freeaddrinfo, getaddrinfo and getnameinfo functions is quite

convoluted, compiler dependant and in some cases even build target dependat.
This commit is contained in:
Yang Tse 2008-11-01 16:52:57 +00:00
parent 5f085789b9
commit 050a39a7a5
3 changed files with 42 additions and 10 deletions

View file

@ -244,6 +244,20 @@
# endif
#endif
/* Availability of freeaddrinfo, getaddrinfo and getnameinfo functions is quite */
/* convoluted, compiler dependant and in some cases even build target dependat. */
#if defined(HAVE_WS2TCPIP_H)
# if defined(_MSC_VER) && (_MSC_VER >= 1200)
# define HAVE_FREEADDRINFO 1
# define HAVE_GETADDRINFO 1
# define HAVE_GETNAMEINFO 1
# elif defined(__MINGW32__) && defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0501)
# define HAVE_FREEADDRINFO 1
# define HAVE_GETADDRINFO 1
# define HAVE_GETNAMEINFO 1
# endif
#endif
/* ---------------------------------------------------------------- */
/* LARGE FILE SUPPORT */
/* ---------------------------------------------------------------- */