initial commit
[ruby_posix_mq.git] / ext / posix_mq / extconf.rb
blobb45cff65f9160182ac1daa1b37c88611ad8d92b4
1 require "mkmf"
3 have_header("mqueue.h") or abort "mqueue.h header missing"
4 have_func("rb_str_set_len")
5 have_func("rb_struct_alloc_noinit")
6 have_func('rb_thread_blocking_region')
7 have_library("rt")
8 dir_config("posix_mq")
9 create_makefile("posix_mq_ext")