summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/io/console/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/io/console/extconf.rb')
-rw-r--r--ruby_1_9_3/ext/io/console/extconf.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby_1_9_3/ext/io/console/extconf.rb b/ruby_1_9_3/ext/io/console/extconf.rb
deleted file mode 100644
index 57cd7ad87f..0000000000
--- a/ruby_1_9_3/ext/io/console/extconf.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-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")
-have_func("dup3", "unistd.h")
-if ok
- create_makefile("io/console")
-end