From: Daniel Elstner Date: Sat, 31 Oct 2015 15:02:30 +0000 (+0100) Subject: build: Also look for python-2.7 pkg-config module X-Git-Tag: libsigrok-0.4.0~138 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=b04a532fa3fc9d544add735821cc003015f96abc;p=libsigrok.git build: Also look for python-2.7 pkg-config module Apparently Gentoo names the module python-2.7 instead of python27. --- diff --git a/configure.ac b/configure.ac index 2f9b06f0..91516fdb 100644 --- a/configure.ac +++ b/configure.ac @@ -337,7 +337,7 @@ AS_IF([test "x$BINDINGS_CXX" = xyes], # The Python bindings need Python development files. SR_PKG_CHECK([python_dev], [SR_PKGLIBS_PYTHON], - [python >= 2.7], [python2 >= 2.7], [python27 >= 2.7]) + [python >= 2.7], [python2 >= 2.7], [python27 >= 2.7], [python-2.7 >= 2.7]) AS_IF([test "x$sr_have_python_dev" != xyes], [SR_APPEND([sr_python_missing], [', '], [Headers])])