mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
78400919ba
for rubies lower than 2.2.0. * ext/bigdecimal/bigdecimal.c (rb_rational_den): ditto. * ext/bigdecimal/extconf.rb: check the existences of struct RRational, rb_rational_num, and rb_rational_den. * ext/bigdecimal/bigdecimal.bundle: bump version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10 lines
227 B
Ruby
10 lines
227 B
Ruby
require 'mkmf'
|
|
|
|
have_func("labs", "stdlib.h")
|
|
have_func("llabs", "stdlib.h")
|
|
|
|
have_type("struct RRational", "ruby.h")
|
|
have_func("rb_rational_num", "ruby.h")
|
|
have_func("rb_rational_den", "ruby.h")
|
|
|
|
create_makefile('bigdecimal')
|