summaryrefslogtreecommitdiff
path: root/ext/pty/extconf.rb
blob: 63383f7faf8642f4f2a45ee52a0932f096eb1215 (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/ === PLATFORM
if have_func("openpty") or
    have_func("_getpty") or
    have_func("ioctl")
  create_makefile('pty')
end