12 lines
180 B
Ruby
Executable File
12 lines
180 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
require "mkmf"
|
|
|
|
unless pkg_config('libconfig')
|
|
puts 'failure: need libconfig'
|
|
exit 1
|
|
end
|
|
|
|
have_func('rb_block_call', 'ruby/ruby.h')
|
|
|
|
create_makefile("rconfig")
|