From 2a0f4ec5762553950b121c955c4782ded068e328 Mon Sep 17 00:00:00 2001 From: Matthieu Dorier Date: Tue, 24 Jan 2017 13:46:35 -0600 Subject: [PATCH] made codes use dynamic library for python instead of static one --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6b9a0b9..f54a358 100755 --- a/configure.ac +++ b/configure.ac @@ -140,7 +140,7 @@ AC_ARG_WITH([boost],[AS_HELP_STRING([--with-boost@<:@=DIR@:>@], [location of Boost Python installation])]) if [ test "x${with_python}" != "x" -a "x${with_boost}" != "x"] ; then - AC_CHECK_FILES([${with_python}/lib/libpython2.7.a ${with_boost}/lib/libboost_python.a], + AC_CHECK_FILES([${with_python}/lib/libpython2.7.so ${with_boost}/lib/libboost_python.a], AM_CONDITIONAL(USE_PYTHON, true), AC_MSG_ERROR(Could not find Python and/or Boost-Python libraries)) PYTHON_CFLAGS="-I${with_python}/include -I${with_boost}/include" -- 2.26.2