summaryrefslogtreecommitdiff
path: root/config/python.m4
diff options
context:
space:
mode:
authorPeter Eisentraut2011-08-18 11:43:16 +0000
committerPeter Eisentraut2011-08-18 11:43:16 +0000
commitf8c2029ef0bf83ceb2bb10ee28362305cfa9cdf2 (patch)
tree967af9d18b7dedd0c30189323d577fec3deb35bb /config/python.m4
parente1f9aa4eaecd8107230df1a1b698e8caf0fba4f8 (diff)
Improve detection of Python 3.2 installations
Because of ABI tagging, the library version number might no longer be exactly the Python version number, so do extra lookups. This affects installations without a shared library, such as ActiveState's installer. Also update the way to detect the location of the 'config' directory, which can also be versioned. Ashesh Vashi
Diffstat (limited to 'config/python.m4')
-rw-r--r--config/python.m49
1 files changed, 7 insertions, 2 deletions
diff --git a/config/python.m4 b/config/python.m4
index ec357c2e481..1ef77a91ddc 100644
--- a/config/python.m4
+++ b/config/python.m4
@@ -32,7 +32,7 @@ fi
AC_MSG_CHECKING([Python configuration directory])
python_majorversion=`${PYTHON} -c "import sys; print(sys.version[[0]])"`
python_version=`${PYTHON} -c "import sys; print(sys.version[[:3]])"`
-python_configdir=`${PYTHON} -c "from distutils.sysconfig import get_python_lib as f; import os; print(os.path.join(f(plat_specific=1,standard_lib=1),'config'))"`
+python_configdir=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LIBPL'))))"`
python_includespec=`${PYTHON} -c "import distutils.sysconfig; print('-I'+distutils.sysconfig.get_python_inc())"`
AC_SUBST(python_majorversion)[]dnl
@@ -69,7 +69,12 @@ then
else
# Old way: use libpython from python_configdir
python_libdir="${python_configdir}"
- python_libspec="-L${python_libdir} -lpython${python_version}"
+ # LDVERSION was introduced in Python 3.2.
+ python_ldversion=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LDVERSION'))))"`
+ if test x"${python_ldversion}" = x""; then
+ python_ldversion=$python_version
+ fi
+ python_libspec="-L${python_libdir} -lpython${python_ldversion}"
fi
python_additional_libs=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LIBS','LIBC','LIBM','BASEMODLIBS'))))"`