1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/socket/mkconstants.rb: workaround for some of 4.4BSD-Lite

derived OSs.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-03-08 04:41:51 +00:00
parent 1c3769c67d
commit e2c31e4614
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Mar 8 13:39:25 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/socket/mkconstants.rb: workaround for some of 4.4BSD-Lite
derived OSs.
Tue Mar 8 10:48:53 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* eval.c (rb_exec_recursive): declaration should precede statements

View file

@ -1,5 +1,8 @@
$out ||= $stdout
# workaround for NetBSD, OpenBSD and etc.
$out.puts("#define pseudo_AF_FTIP pseudo_AF_RTIP")
# skip empty lines and comment lines
DATA.each_line do |s|
name, value = s.scan(/\S+/)