From 5c483328e932b1265b61e4714ef9d1eef2c8fa33 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 19 Feb 2016 02:09:06 +0000 Subject: 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 --- ext/extmk.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/extmk.rb') 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*' -- cgit v1.2.3