diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
commit | 6d53b692ab91c8817736cdec78b388e6e4990806 (patch) | |
tree | 3a84f886c14e2a9a8fe65c664b4f4805e2cbc2d4 /ext/pty/extconf.rb | |
parent | 9da4f78db46764be6dae5e7e83ff48cbecb3fb23 (diff) |
support mingw32.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pty/extconf.rb')
-rw-r--r-- | ext/pty/extconf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pty/extconf.rb b/ext/pty/extconf.rb index 63383f7faf..4df2011eb5 100644 --- a/ext/pty/extconf.rb +++ b/ext/pty/extconf.rb @@ -2,7 +2,7 @@ require 'mkmf' have_header("sys/stropts.h") have_func("setresuid") -$CFLAGS << "-DHAVE_DEV_PTMX" if /cygwin/ === PLATFORM +$CFLAGS << "-DHAVE_DEV_PTMX" if /cygwin/ === RUBY_PLATFORM if have_func("openpty") or have_func("_getpty") or have_func("ioctl") |