I\'m trying to install a package (soccer simulator 2d) on Debian. When I go to the directory and run ./configure
, I get the following:
reza@debian:~
No expert here, but my $.02:
First, Boost is only mostly a headers-only library. For some libraries, you do have to build, and add to your lib path; boost_system is one of those libs.
Second, it's easy to overlook the fact that you can build the Boost libs as static libs, or as shared libs, and if you've built one and are trying to link against the other, that might account for your problem.
./b2 runtime-link=shared will create shared; ./b2 runtime-link=static will build static libs.
Hope this helps :)