summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-26 23:06:29 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-27 12:45:24 +0100
commit602b746330d21ae1b9c0fc60eb0980ed92cd5680 (patch)
tree5514ebe930a8135e43329f8d79811cbd8f137985
parent38a22a9026a3d8a67f3e16ec650960a10b527d25 (diff)
configure: switch system Python minimum to 3.3
System Python 2 can still be used by setting PYTHON, PYTHON_CFLAGS, PYTHON_LIBS manually. Change-Id: I4c2eccad3866ae2b037752e9e06768c444e0aa9a
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index cb8a7609d67c..c0dc0ae1b511 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7377,11 +7377,11 @@ else
PYTHON_LIBS="-framework Python"
else
# This causes an error if no python command is found
- AM_PATH_PYTHON([2.6])
+ AM_PATH_PYTHON([3.3])
fi
elif test $enable_python = auto; then
dnl This allows lack of system Python
- AM_PATH_PYTHON([2.6],, [:])
+ AM_PATH_PYTHON([3.3],, [:])
if test "$PYTHON" = :; then
enable_python=internal