From: Bert Vermeulen Date: Wed, 23 Jul 2014 10:45:41 +0000 (+0200) Subject: build: We only need python 2.x for generating the bindings. X-Git-Tag: libsigrok-0.4.0~1215 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=57d62c4c7192f5b1f882c13de1abcde7527c156a build: We only need python 2.x for generating the bindings. --- diff --git a/configure.ac b/configure.ac index 90bd73b0..c3eb9b51 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,7 @@ if test "x$HAVE_GCCXML" != "xyes"; then fi # Python is needed for the C++ (and Python) bindings. -PKG_CHECK_MODULES([python], [python3 >= 2.7], +PKG_CHECK_MODULES([python], [python >= 2.7], [CXXFLAGS="$CXXFLAGS $python_CFLAGS"; CXXLIBS="$CXXLIBS $python_LIBS"], [BINDINGS_CXX="no"])