Hi Pirasteh,
I experienced a similar issue with installing Cufflinks recently on a Fedora distribution. try changing your configure command to only reference the local folder for boost, instead of looking within the boost folder
#./configure --prefix=/usr/local/cufflinks/ --with-boost=/usr/local --with-eigen=/usr/local/include
At least in my case, it solved a similar issue when checking the boostlib version.
The only other idea I have, is that the Tophat2 installation instructions suggest a ./bjam command as follows during boost installation:
# ./bjam
--prefix=<YOUR_BOOST_INSTALL_DIRECTORY> link=static \runtime-link=static
stage install
While the line that is
recommended for cufflinks installation is as follows:
# ./bjam
--prefix=<YOUR_BOOST_INSTALL_DIRECTORY> --toolset=gcc architecture=x86
address_model=64 link=static runtime-link=static stage install
Not sure if that would have any effect, but hopefully this helps fix your problem.
Scott