mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 53868: [Backport #12071]
* ext/extmk.rb: add cygwin case, nothing excluded. [ruby-core:73806] [Bug#12071] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54406 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d3c05ae77c
commit
e34df45eba
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Mar 29 23:36:49 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/extmk.rb: add cygwin case, nothing excluded.
|
||||||
|
[ruby-core:73806] [Bug#12071]
|
||||||
|
|
||||||
Tue Mar 29 23:10:47 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Mar 29 23:10:47 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* iseq.c (rb_iseq_mark): mark parent iseq to prevent dynamically
|
* iseq.c (rb_iseq_mark): mark parent iseq to prevent dynamically
|
||||||
|
|
|
@ -494,7 +494,10 @@ end unless $extstatic
|
||||||
ext_prefix = "#{$top_srcdir}/ext"
|
ext_prefix = "#{$top_srcdir}/ext"
|
||||||
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
|
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
|
||||||
default_exclude_exts =
|
default_exclude_exts =
|
||||||
if $mswin or $mingw
|
case
|
||||||
|
when $cygwin
|
||||||
|
%w''
|
||||||
|
when $mswin, $mingw
|
||||||
%w'pty syslog'
|
%w'pty syslog'
|
||||||
else
|
else
|
||||||
%w'*win32*'
|
%w'*win32*'
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#define RUBY_VERSION "2.3.0"
|
#define RUBY_VERSION "2.3.0"
|
||||||
#define RUBY_RELEASE_DATE "2016-03-29"
|
#define RUBY_RELEASE_DATE "2016-03-29"
|
||||||
#define RUBY_PATCHLEVEL 54
|
#define RUBY_PATCHLEVEL 55
|
||||||
|
|
||||||
#define RUBY_RELEASE_YEAR 2016
|
#define RUBY_RELEASE_YEAR 2016
|
||||||
#define RUBY_RELEASE_MONTH 3
|
#define RUBY_RELEASE_MONTH 3
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue