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

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