2015-12-16 05:31:54 +00:00
|
|
|
# frozen_string_literal: false
|
2003-03-28 05:00:21 +00:00
|
|
|
require 'mkmf'
|
2008-02-09 08:51:26 +00:00
|
|
|
|
2017-12-14 04:40:15 +00:00
|
|
|
gemspec_name = gemspec_path = nil
|
|
|
|
unless ['', '../../'].any? {|dir|
|
|
|
|
gemspec_name = "#{dir}bigdecimal.gemspec"
|
|
|
|
gemspec_path = File.expand_path("../#{gemspec_name}", __FILE__)
|
|
|
|
File.file?(gemspec_path)
|
|
|
|
}
|
2017-12-13 15:28:30 +00:00
|
|
|
$stderr.puts "Unable to find bigdecimal.gemspec"
|
|
|
|
abort
|
|
|
|
end
|
|
|
|
|
|
|
|
bigdecimal_version =
|
|
|
|
IO.readlines(gemspec_path)
|
|
|
|
.grep(/\Abigdecimal_version\s+=\s+/)[0][/\'([\d\.]+)\'/, 1]
|
|
|
|
|
|
|
|
$defs << %Q[-DRUBY_BIGDECIMAL_VERSION=\\"#{bigdecimal_version}\\"]
|
|
|
|
|
2010-08-14 15:22:43 +00:00
|
|
|
have_func("labs", "stdlib.h")
|
|
|
|
have_func("llabs", "stdlib.h")
|
2016-12-10 07:49:15 +00:00
|
|
|
have_func("finite", "math.h")
|
|
|
|
have_func("isfinite", "math.h")
|
2010-08-14 15:22:43 +00:00
|
|
|
|
2015-01-29 14:34:43 +00:00
|
|
|
have_type("struct RRational", "ruby.h")
|
|
|
|
have_func("rb_rational_num", "ruby.h")
|
|
|
|
have_func("rb_rational_den", "ruby.h")
|
2016-12-10 07:49:15 +00:00
|
|
|
have_func("rb_array_const_ptr", "ruby.h")
|
|
|
|
have_func("rb_sym2str", "ruby.h")
|
|
|
|
|
2018-12-20 23:29:49 +00:00
|
|
|
if File.file?(File.expand_path('../lib/bigdecimal.rb', __FILE__))
|
|
|
|
bigdecimal_rb = "$(srcdir)/lib/bigdecimal.rb"
|
|
|
|
else
|
|
|
|
bigdecimal_rb = "$(srcdir)/../../lib/bigdecimal.rb"
|
|
|
|
end
|
|
|
|
|
2017-12-14 04:40:15 +00:00
|
|
|
create_makefile('bigdecimal') {|mf|
|
2018-12-05 11:30:24 +00:00
|
|
|
mf << "GEMSPEC = #{gemspec_name}\n"
|
2018-12-20 23:29:49 +00:00
|
|
|
mf << "BIGDECIMAL_RB = #{bigdecimal_rb}\n"
|
2017-12-14 04:40:15 +00:00
|
|
|
}
|