I am installing fastcgi++
from http://www.nongnu.org/fastcgipp/
It required the boost libraries and I configure using the following
sudo ./configure --with-boost=/home/test/boost
But I get the below error. How do I fix? Its finding my boost. Hmmmm
checking for Boost's header version... 1_48 checking boost/bind.hpp usability... yes checking boost/bind.hpp presence... yes checking for boost/bind.hpp... yes checking for the toolset name used by Boost for g++... gcc45 -gcc checking boost/date_time/posix_time/posix_time.hpp usability... yes checking boost/date_time/posix_time/posix_time.hpp presence... yes checking for boost/date_time/posix_time/posix_time.hpp... yes checking for the Boost date_time library... no configure: error: cannot find the flags to link with Boost date_time
I ran the following command, but I got the same error
There were a lot of packages missing in my boost installation. My
configure
error was solved when I executedwhich installed all boost libraries. Be aware that it will install the most recent boost libraries in your repositories. In my case, it installed
1.46
version, while the current version in the boost website is1.51
.