From cd9165458ba25a815c01d29ff1ce4ce88b599499 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 14 May 2013 08:24:58 +0000 Subject: 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 --- win32/win32.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'win32/win32.c') diff --git a/win32/win32.c b/win32/win32.c index 63453c349e..373f776504 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3736,6 +3736,7 @@ socketpair(int af, int type, int protocol, int *sv) return 0; } +#if !defined(_MSC_VER) || _MSC_VER >= 1400 /* License: Ruby's */ static void str2guid(const char *str, GUID *guid) @@ -3879,6 +3880,7 @@ freeifaddrs(struct ifaddrs *ifp) ifp = next; } } +#endif // // Networking stubs -- cgit v1.2.3