aboutsummaryrefslogtreecommitdiffstats
path: root/ext/bigdecimal/extconf.rb
diff options
context:
space:
mode:
authormrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-29 14:34:43 +0000
committermrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-29 14:34:43 +0000
commit78400919bad04fcba0b9dee75b6217933c958fbc (patch)
tree3209c640f27c4eca4dfb08519fe89064c3414a0c /ext/bigdecimal/extconf.rb
parent21f6bb283f3eac8e723a23f0a7f78ffcfe574540 (diff)
downloadruby-78400919bad04fcba0b9dee75b6217933c958fbc.tar.gz
* ext/bigdecimal/bigdecimal.c (rb_rational_num): add fallback function
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
Diffstat (limited to 'ext/bigdecimal/extconf.rb')
-rw-r--r--ext/bigdecimal/extconf.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bigdecimal/extconf.rb b/ext/bigdecimal/extconf.rb
index d6be3e584e..a3ec7b4c6c 100644
--- a/ext/bigdecimal/extconf.rb
+++ b/ext/bigdecimal/extconf.rb
@@ -3,4 +3,8 @@ 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')