From 1ff3448d2e27f1bac8d2f0af8b8e952854860278 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 29 Jan 2015 22:21:27 +0100 Subject: m4: Use python-config if available to fix Python 3 support on newer distros --- m4/ac_python_devel.m4 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'm4') diff --git a/m4/ac_python_devel.m4 b/m4/ac_python_devel.m4 index 2e7406e..545c607 100644 --- a/m4/ac_python_devel.m4 +++ b/m4/ac_python_devel.m4 @@ -151,6 +151,9 @@ $ac_distutils_result]) # Check for Python include path # AC_MSG_CHECKING([for Python include path]) + if type $PYTHON-config; then + PYTHON_CPPFLAGS=`$PYTHON-config --includes` + fi if test -z "$PYTHON_CPPFLAGS"; then python_path=`$PYTHON -c "import distutils.sysconfig; \ print(distutils.sysconfig.get_python_inc());"` @@ -166,6 +169,9 @@ $ac_distutils_result]) # Check for Python library path # AC_MSG_CHECKING([for Python library path]) + if type $PYTHON-config; then + PYTHON_LDFLAGS=`$PYTHON-config --ldflags` + fi if test -z "$PYTHON_LDFLAGS"; then # (makes two attempts to ensure we've got a version number # from the interpreter) -- cgit v1.1-32-gdbae