mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/extconf.rb: if ipv6 is enabled, the version of Windows
most be XP or later. [ruby-core:24601] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
87bb97ceb5
commit
f73eaeb3a6
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Aug 12 21:07:46 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/socket/extconf.rb: if ipv6 is enabled, the version of Windows
|
||||
most be XP or later.
|
||||
[ruby-core:24601]
|
||||
|
||||
Wed Aug 12 15:59:29 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* common.mk (yes-test-knownbug): use RUNRUBY instead of MINIRUBY.
|
||||
|
|
|
@ -52,6 +52,9 @@ EOF
|
|||
end
|
||||
|
||||
if ipv6
|
||||
if $mingw
|
||||
$CPPFLAGS << " -D_WIN32_WINNT=0x501"
|
||||
end
|
||||
ipv6lib = nil
|
||||
class << (fmt = "unknown")
|
||||
def %(s) s || self end
|
||||
|
|
Loading…
Reference in a new issue