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, 20 insertions, 0 deletions
diff --git a/ruby_1_9_3/ext/io/console/extconf.rb b/ruby_1_9_3/ext/io/console/extconf.rb
new file mode 100644
index 0000000000..57cd7ad87f
--- /dev/null
+++ b/ruby_1_9_3/ext/io/console/extconf.rb
@@ -0,0 +1,20 @@
+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