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

if /mswin32|mingw/ !~ 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