testply='try: import ply
except: exit(1)'
+testsetup='try: from distutils.core import setup
+except: exit(1)'
+
default_with_python="python python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"
if "$PYTHON" -c "$testply" 2>/dev/null; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+ unset PYTHON
+ continue
+fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python module 'distutils.core setup'" >&5
+$as_echo_n "checking Python module 'distutils.core setup'... " >&6; }
+ if "$PYTHON" -c "$testsetup" 2>/dev/null; then :
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
testply='try: import ply
except: exit(1)'
+testsetup='try: from distutils.core import setup
+except: exit(1)'
+
default_with_python="python python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"
AC_ARG_WITH([python],
unset PYTHON
continue])
+ AC_MSG_CHECKING([Python module 'distutils.core setup'])
+ AS_IF(["$PYTHON" -c "$testsetup" 2>/dev/null],
+ [AC_MSG_RESULT([yes])],
+ [AC_MSG_RESULT([no])
+ unset PYTHON
+ continue])
+
# Stop looking any further once we find a Python interpreter
# satisfying all requirements.
break