diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/socket/depend | 2 | ||||
-rw-r--r-- | ext/socket/mkconstants.rb | 30 |
2 files changed, 30 insertions, 2 deletions
diff --git a/ext/socket/depend b/ext/socket/depend index 29bc2f3be3..0a9b8cacef 100644 --- a/ext/socket/depend +++ b/ext/socket/depend @@ -6,4 +6,4 @@ getaddrinfo.o: getaddrinfo.c $(arch_hdrdir)/ruby/config.h addrinfo.h sockport.h constants.h: $(srcdir)/mkconstants.rb @echo "generating constants.h" - @$(RUBY) $(srcdir)/mkconstants.rb > $@ + @$(RUBY) $(srcdir)/mkconstants.rb -o $@ diff --git a/ext/socket/mkconstants.rb b/ext/socket/mkconstants.rb index 589e3b2bb3..948eda8be1 100644 --- a/ext/socket/mkconstants.rb +++ b/ext/socket/mkconstants.rb @@ -1,4 +1,24 @@ -$out ||= $stdout +require 'optparse' + +opt = OptionParser.new + +opt.def_option('-h', 'help') { + puts opt + exit 0 +} + +opt_o = nil +opt.def_option('-o FILE', 'specify output file') {|filename| + opt_o = filename +} + +$out = '' +def $out.puts(str="") + str += "\n" if /\n\z/ !~ str + self << str +end + +opt.parse! # workaround for NetBSD, OpenBSD and etc. $out.puts("#define pseudo_AF_FTIP pseudo_AF_RTIP") @@ -23,6 +43,14 @@ DATA.each_line do |s| end end +if opt_o + File.open(opt_o, 'w') {|f| + f << $out + } +else + $stdout << $out +end + __END__ SOCK_STREAM |