aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-19 02:09:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-19 02:09:06 +0000
commit5c483328e932b1265b61e4714ef9d1eef2c8fa33 (patch)
tree398b0ebd9ef3144afff02c273ca93e9928ebe6d3
parent6625dc3495b7cd5c8413f291bd1ac06d23dcd1e2 (diff)
downloadruby-5c483328e932b1265b61e4714ef9d1eef2c8fa33.tar.gz
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--ChangeLog5
-rwxr-xr-xext/extmk.rb5
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d9256c84e..fce9a0e8ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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*'