summaryrefslogtreecommitdiff
path: root/include/ruby/win32.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-14 08:24:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-14 08:24:58 +0000
commitcd9165458ba25a815c01d29ff1ce4ce88b599499 (patch)
tree0d888e8f320f683e5230a02147b5b71e49308507 /include/ruby/win32.h
parente6589b2b552f1fb7fe601cce7dda7b86fb4d873d (diff)
iphlpapi is unavailable with older VC
* include/ruby/win32.h, win32/Makefile.sub, win32/win32.c: iphlpapi is not available with older Visual C. works with VC9 or later at least. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/win32.h')
-rw-r--r--include/ruby/win32.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/win32.h b/include/ruby/win32.h
index ec156c40e7..ad43dfc81f 100644
--- a/include/ruby/win32.h
+++ b/include/ruby/win32.h
@@ -37,7 +37,9 @@ extern "C++" { /* template without extern "C++" */
#endif
#include <winsock2.h>
#include <ws2tcpip.h>
+#if !defined(_MSC_VER) || _MSC_VER >= 1400
#include <iphlpapi.h>
+#endif
#if defined(__cplusplus) && defined(_MSC_VER)
}
#endif