From 09d330c44762ad2857e9d94238dd1905202cf736 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 31 Aug 2013 05:16:58 +0200 Subject: AUTOTOOLS: Add -LLIBDIR to PYTHON_LIBS Detect directory with python libraries and add this directory to the list of directories to be searched for linker. --- src/external/python.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/external/python.m4 b/src/external/python.m4 index 00487a746..5f48bc926 100644 --- a/src/external/python.m4 +++ b/src/external/python.m4 @@ -19,7 +19,8 @@ dnl versions of python PYTHON_LIBS="`$PYTHON -c \"from distutils import sysconfig; \ print \\\" \\\".join(sysconfig.get_config_var('LIBS').split() + \ sysconfig.get_config_var('SYSLIBS').split()) + \ - ' -lpython' + sysconfig.get_config_var('VERSION')\"`" + ' -lpython' + sysconfig.get_config_var('VERSION') + \ + ' -L' + sysconfig.get_config_var('LIBDIR')\"`" AC_MSG_RESULT([yes]) else AC_MSG_ERROR([no. Please install python devel package]) -- cgit