diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-25 09:03:43 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-25 09:03:43 +0000 |
| commit | 3aa289ec19c6eed53418986c28d697423c0d3a94 (patch) | |
| tree | 646ed1a675dd99eda9fa9346979dde1355dbde2d | |
| parent | 9daae2c34e64d390ce75d966d20bc0c4e6395ff7 (diff) | |
| download | ruby-3aa289ec19c6eed53418986c28d697423c0d3a94.tar.gz ruby-3aa289ec19c6eed53418986c28d697423c0d3a94.tar.xz ruby-3aa289ec19c6eed53418986c28d697423c0d3a94.zip | |
* ext/pty/extconf.rb: skip wince and win64.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/pty/extconf.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Jun 25 18:02:55 2007 NAKAMURA Usaku <usa@ruby-lang.org> + + * ext/pty/extconf.rb: skip wince and win64. + Mon Jun 25 17:59:32 2007 NAKAMURA Usaku <usa@ruby-lang.org> * include/ruby/node.h (NODE_LMASK, nd_line): shouldn't use int and/or diff --git a/ext/pty/extconf.rb b/ext/pty/extconf.rb index 5e126fe0c..87fbdc602 100644 --- a/ext/pty/extconf.rb +++ b/ext/pty/extconf.rb @@ -1,6 +1,6 @@ require 'mkmf' -if /mswin32|mingw|bccwin32/ !~ RUBY_PLATFORM +if /mswin|mingw|bccwin/ !~ RUBY_PLATFORM have_header("sys/stropts.h") have_func("setresuid") have_header("libutil.h") |
