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

* ext/io/console: imported. [ruby-dev:40897]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-08 04:05:39 +00:00
parent 2c01a07bf4
commit 163f974208
4 changed files with 565 additions and 0 deletions

19
ext/io/console/extconf.rb Normal file
View file

@ -0,0 +1,19 @@
require 'mkmf'
ok = true
hdr = nil
case
when macro_defined?("_WIN32", "")
have_func("rb_w32_map_errno", "ruby.h")
when hdr = %w"termios.h termio.h".find {|h| have_header(h)}
have_func("cfmakeraw", hdr)
when have_header(hdr = "sgtty.h")
%w"stty gtty".each {|f| have_func(f, hdr)}
else
ok = false
end
have_header("sys/ioctl.h")
have_func("rb_io_get_write_io", "ruby/io.h")
if ok
create_makefile("io/console")
end