configure.ac: Look for python-2.7.pc as well when making bindings

This commit is contained in:
Marcus Comstedt 2014-08-15 15:55:22 +02:00
parent 33c84e8197
commit 2ba308ecc6
1 changed files with 4 additions and 1 deletions

View File

@ -200,7 +200,10 @@ fi
PKG_CHECK_MODULES([python], [python >= 2.7],
[CXXFLAGS="$CXXFLAGS $python_CFLAGS";
CXXLIBS="$CXXLIBS $python_LIBS"],
[BINDINGS_PYTHON="no"; python_msg="Python headers required"])
[PKG_CHECK_MODULES([python27], [python-2.7 >= 2.7],
[CXXFLAGS="$CXXFLAGS $python27_CFLAGS";
CXXLIBS="$CXXLIBS $python27_LIBS"],
[BINDINGS_PYTHON="no"; python_msg="Python headers required"])])
# The Python bindings need the setuptools Python module.
m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([setuptools])],