Claudio Martella wrote:
OK, here I have /opt/local/lib/libboost_python-mt.a /opt/local/lib/libboost_python-mt.dylib
I tried --with-boost-library="/opt/local/lib/libboost_python-mt" and --with-boost-library="-mt" but no success. Do you have any suggestions?
You should try --with-boost-python=boost_python-mt. But you should also pass --prefix=/opt/local, in case you haven't done so, since it seems like a non-default directory. In general, these are the following parameters you have to tweak for a particular environment, in order of importance, if it is not automatically detected: --prefix [general prefix, defaults to /usr/local] --with-boost [_include_ directory, if not prefix/include] --with-boost-libdir [_library_ directory, if not prefix/lib] --with-boost-python [library name, i.e., libboost_python-mt] --with-boost-iostreams [the same for boost iostreams] --with-boost-regex [the same for boost regex] Check if the include files and library files are in the expected places according to the above. If it still fails, take a look at config.log, to see what it is trying to do, and why it fails. It would also be good if you could attach this file to your messages if you are still having problems. Cheers, Tiago