Kaydet (Commit) 602b7463 authored tarafından Michael Stahl's avatar Michael Stahl

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
üst 38a22a90
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment