aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-11-01 16:52:57 +0000
committerYang Tse <yangsita@gmail.com>2008-11-01 16:52:57 +0000
commit050a39a7a578106989b32f80a625c46a87b52ca1 (patch)
tree86722e788f9257c5539790d7206c38e9b9ae28ef /src
parent5f085789b92be623e7a73d1172486a64daf42895 (diff)
WIN32 availability of freeaddrinfo, getaddrinfo and getnameinfo functions is quite
convoluted, compiler dependant and in some cases even build target dependat.
Diffstat (limited to 'src')
-rw-r--r--src/config-win32.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config-win32.h b/src/config-win32.h
index c32ab1717..61471a323 100644
--- a/src/config-win32.h
+++ b/src/config-win32.h
@@ -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 */
/* ---------------------------------------------------------------- */