diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-06 07:44:57 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-06 07:44:57 +0000 |
| commit | 1c5d2e1cedeae96772dead713f125127191ca8d6 (patch) | |
| tree | 65c4cec62b10c75c3806398fd70136cc7d84b737 | |
| parent | bff8ab13f33c59ffed9fcf397a60e26fc376d1ed (diff) | |
* win32/win32.h: include ws2tcpip.h. fixed [ruby-Bugs-20528]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | win32/win32.h | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Jun 6 16:44:37 2008 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/win32.h: include ws2tcpip.h. fixed [ruby-Bugs-20528] + Fri Jun 6 12:20:33 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/iconv/iconv.c (iconv_iconv): fixed backport miss. diff --git a/win32/win32.h b/win32/win32.h index 524ad7431f..b6ebab04ae 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -25,6 +25,7 @@ #endif #ifdef USE_WINSOCK2 #include <winsock2.h> +#include <ws2tcpip.h> #include <windows.h> #else #include <windows.h> |
