From 78400919bad04fcba0b9dee75b6217933c958fbc Mon Sep 17 00:00:00 2001 From: mrkn Date: Thu, 29 Jan 2015 14:34:43 +0000 Subject: * 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 --- ext/bigdecimal/extconf.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/bigdecimal/extconf.rb') 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') -- cgit v1.2.3