Top Level Namespace

Defined Under Namespace

Classes: DHKey

Instance Method Summary collapse

Instance Method Details

#check_functions(lib, *functions) ⇒ Object



33
34
35
36
37
38
# File 'ext/extconf.rb', line 33

def check_functions(lib, *functions)
	functions.each do |f|
		return false unless have_library lib.to_s, f.to_s
	end
	return true
end