mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
77811031e5
* ext/extmk.rb (extmake): don't build nested libraries if parent library isn't build. * ext/{dl/callback,tk/tkutil}/extconf.rb: no longer need to check if the parent is build. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
11 lines
253 B
Ruby
11 lines
253 B
Ruby
begin
|
|
require 'mkmf'
|
|
|
|
have_func("rb_obj_instance_exec", "ruby.h")
|
|
have_func("rb_obj_untrust", "ruby.h")
|
|
have_func("rb_obj_taint", "ruby.h")
|
|
have_func("rb_sym_to_s", "ruby.h")
|
|
have_func("strndup", "string.h")
|
|
|
|
create_makefile('tkutil')
|
|
end
|