I am in the process of releasing my Ruby C/C++ extension and try to make sure that all libraries required are listed in extconf.rb. I have not been able to figure out how to require the boost library and especially the dynamic_bitset<> class.
What I tried so far:
# Require used libraries
have_library("stdc++")
have_library("boost", "boost::dynamic_bitset<>")
Even though I've got boost installed, and the extension compiles perfectly I'm getting this:
$ ruby extconf.rb
checking for main() in -lstdc++... yes
checking for boost::dynamic_bitset<>() in -lboost... no
Any ideas on how to properly require boost to be installed?