class Object
Constants
- HEADER_DIRS
- INCLUDEDIR
- LIBDIR
- LIB_DIRS
Public Instance Methods
have_funcs()
click to toggle source
# File ext/journald_native/extconf.rb, line 32 def have_funcs # check functions. redefine const list in sd_journal.h if changed %w(sd_journal_print sd_journal_sendv sd_journal_perror).inject(true) do |have_funcs, func| have_funcs && have_func(func) end end