Skip to content

Commit 3da1f24

Browse files
committed
merge revision(s) 41648: [Backport ruby#8115]
* lib/mkmf.rb: should use expanded values for header directories unless extmk. patch by vo.x (Vit Ondruch) at [ruby-core:55653] [Bug ruby#8115], rhbz#921650. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent fb82ba2 commit 3da1f24

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Wed Jun 26 22:42:36 2013 Nobuyoshi Nakada <[email protected]>
2+
3+
* lib/mkmf.rb: should use expanded values for header directories
4+
unless extmk. patch by vo.x (Vit Ondruch) at [ruby-core:55653]
5+
[Bug #8115], rhbz#921650.
6+
17
Wed Jun 26 02:25:52 2013 Akinori MUSHA <[email protected]>
28

39
* lib/rubygems/ext/builder.rb (Gem::Ext::Builder.make): Pass

lib/mkmf.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,10 @@ def map_dir(dir, map = nil)
225225
path = dir
226226
end
227227
$extmk ||= false
228-
if not $extmk and File.exist?(RbConfig::CONFIG["rubyhdrdir"] + "/ruby/ruby.h")
229-
$hdrdir = CONFIG["rubyhdrdir"]
228+
if not $extmk and File.exist?(($hdrdir = RbConfig::CONFIG["rubyhdrdir"]) + "/ruby/ruby.h")
230229
$topdir = $hdrdir
231230
$top_srcdir = $hdrdir
232-
$arch_hdrdir = CONFIG["rubyarchhdrdir"]
231+
$arch_hdrdir = RbConfig::CONFIG["rubyarchhdrdir"]
233232
elsif File.exist?(($hdrdir = ($top_srcdir ||= topdir) + "/include") + "/ruby.h")
234233
$topdir ||= RbConfig::CONFIG["topdir"]
235234
$arch_hdrdir = "$(extout)/include/$(arch)"

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.0.0"
22
#define RUBY_RELEASE_DATE "2013-06-26"
3-
#define RUBY_PATCHLEVEL 242
3+
#define RUBY_PATCHLEVEL 243
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 6

0 commit comments

Comments
 (0)