diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-02-19 02:09:06 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-02-19 02:09:06 +0000 |
commit | 9bfa5d917f8cb3e123a24c86813c191d05fcf53b (patch) | |
tree | 398b0ebd9ef3144afff02c273ca93e9928ebe6d3 | |
parent | cf87846f16bc1b54d29f7d20a53ad4dab9631af0 (diff) |
extmk.rb: cygwin case
* ext/extmk.rb: add cygwin case, nothing excluded.
[ruby-core:73806] [Bug#12071]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53868 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | ext/extmk.rb | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Feb 19 11:08:32 2016 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/extmk.rb: add cygwin case, nothing excluded. + [ruby-core:73806] [Bug#12071] + Thu Feb 18 21:32:15 2016 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> * man/irb.1: fix output in EXAMPLES. diff --git a/ext/extmk.rb b/ext/extmk.rb index 3efecbc28a..d2832c5aa2 100755 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -494,7 +494,10 @@ end unless $extstatic ext_prefix = "#{$top_srcdir}/ext" exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t} default_exclude_exts = - if $mswin or $mingw + case + when $cygwin + %w'' + when $mswin, $mingw %w'pty syslog' else %w'*win32*' |