From 9a99663fa97d49d30b192a2632f0c9ddfb6509bc Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 8 May 2009 10:17:04 +0000 Subject: * lib/mkmf.rb (check_sizeof): fixed wrong recuring result for intrinsic types. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/mkmf.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/mkmf.rb b/lib/mkmf.rb index d24c87f5cd..45346bfdbc 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -989,10 +989,14 @@ def check_sizeof(type, headers = nil, &b) x ? super : "failed" end checking_for checking_message("size of #{type}", headers), fmt do - if ((size = UNIVERSAL_INTS.find {|t| - try_static_assert("#{expr} == sizeof(#{t})", prelude, &b) - }) or - size = try_constant(expr, prelude, &b)) + if UNIVERSAL_INTS.include?(type) + type + elsif size = UNIVERSAL_INTS.find {|t| + try_static_assert("#{expr} == sizeof(#{t})", prelude, opts, &b) + } + $defs.push(format("-DSIZEOF_%s=SIZEOF_%s", type.tr_cpp, size.tr_cpp)) + size + elsif size = try_constant(expr, prelude, opts, &b) $defs.push(format("-DSIZEOF_%s=%s", type.tr_cpp, size)) size end -- cgit v1.2.3