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
|
|
|
|
2016-12-10 07:49:15 +00:00
|
|
|
alias __have_macro__ have_macro
|
|
|
|
|
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")
|
|
|
|
|
2003-03-28 05:00:21 +00:00
|
|
|
create_makefile('bigdecimal')
|