* ext/socket/mkconstants.rb: AF_ISO and AF_OSI may be aliased.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-01-01 11:55:05 +00:00
parent b9cd44cfc1
commit afb0581aa8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Jan 1 20:54:02 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/mkconstants.rb: AF_ISO and AF_OSI may be aliased.
Thu Jan 1 20:50:09 2009 URABE Shyouhei <shyouhei@ruby-lang.org>
* process.c (before_exec): it makes no sense for a conditional

View File

@ -94,7 +94,8 @@ ERB.new(<<'EOS', nil, '%').def_method(Object, "gen_name_to_int(str_var, len_var,
EOS
MAYBE_ALIAS = [
["AF_UNIX", "AF_LOCAL"]
["AF_UNIX", "AF_LOCAL"],
["AF_ISO", "AF_OSI"]
]
def each_alias(pat)