summaryrefslogtreecommitdiff
path: root/ext/pty/extconf.rb
blob: 5e126fe0cfc6bc09224f14762b15e3cc08a7f891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'mkmf'

if /mswin32|mingw|bccwin32/ !~ RUBY_PLATFORM
  have_header("sys/stropts.h")
  have_func("setresuid")
  have_header("libutil.h")
  have_header("pty.h")
  have_library("util", "openpty")
  if have_func("openpty") or
      have_func("_getpty") or
      have_func("ptsname") or
      have_func("ioctl")
    create_makefile('pty')
  end
end