summaryrefslogtreecommitdiff
path: root/ext/pty/extconf.rb
blob: 4df2011eb5cb7edfade6716d551458ce0c64bdff (plain)
1
2
3
4
5
6
7
8
9
10
require 'mkmf'

have_header("sys/stropts.h")
have_func("setresuid")
$CFLAGS << "-DHAVE_DEV_PTMX" if /cygwin/ === RUBY_PLATFORM
if have_func("openpty") or
    have_func("_getpty") or
    have_func("ioctl")
  create_makefile('pty')
end