summaryrefslogtreecommitdiff
path: root/ext/pty/extconf.rb
blob: 51a4bc7cd30f8e6ab7e0697faf166384fe7e703c (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")
  $CFLAGS << "-DHAVE_DEV_PTMX" if /cygwin/ === RUBY_PLATFORM
  have_header("libutil.h")
  have_header("pty.h")
  have_library("util", "openpty")
  if have_func("openpty") or
      have_func("_getpty") or
      have_func("ioctl")
    create_makefile('pty')
  end
end