diff options
author | John Wiegley <johnw@newartisans.com> | 2005-02-15 03:30:35 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:01 -0400 |
commit | 7a38b49048e140be64c90a571313703e80332c39 (patch) | |
tree | 576a20a77ab0a6a93484c1510f8db7c1277674a1 | |
parent | 1c0a0616754175eed4a8e61765b409708061441a (diff) | |
download | fork-ledger-7a38b49048e140be64c90a571313703e80332c39.tar.gz fork-ledger-7a38b49048e140be64c90a571313703e80332c39.tar.bz2 fork-ledger-7a38b49048e140be64c90a571313703e80332c39.zip |
Added -lpython$PYTHON_VERSION to the LIBS line. The way things were,
the boost test would always fail.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9071c99a..858fea08 100644 --- a/configure.in +++ b/configure.in @@ -178,7 +178,7 @@ if [test x$python = xtrue ]; then [if boost_python is available], [boost_python_cpplib_avail], [boost_python_save_libs=$LIBS - LIBS="-lboost_python $LIBS" + LIBS="-lboost_python -lpython$PYTHON_VERSION $LIBS" AC_LANG_PUSH(C++) AC_TRY_LINK( [#include <boost/python.hpp> |