mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-23 20:03:31 +01:00
Prefer recent Python 3 in autoconf.
Closes ticket 26372.
This commit is contained in:
parent
ef671147f2
commit
47ee7978fe
4
changes/feature26372_029
Normal file
4
changes/feature26372_029
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor features (compilation):
|
||||||
|
|
||||||
|
- When building Tor, prefer to use Python 3 over Python 2, and more
|
||||||
|
recent (contemplated) versions over older ones. Closes ticket 26372.
|
@ -213,7 +213,11 @@ AM_PROG_CC_C_O
|
|||||||
AC_PROG_CC_C99
|
AC_PROG_CC_C99
|
||||||
|
|
||||||
AC_ARG_VAR([PYTHON], [path to Python binary])
|
AC_ARG_VAR([PYTHON], [path to Python binary])
|
||||||
AC_CHECK_PROGS(PYTHON, [python python2 python2.7 python3 python3.3])
|
AC_CHECK_PROGS(PYTHON, [ \
|
||||||
|
python3 \
|
||||||
|
python3.8 python3.7 python3.6 python3.5 python3.4 \
|
||||||
|
python \
|
||||||
|
python2 python2.7])
|
||||||
if test "x$PYTHON" = "x"; then
|
if test "x$PYTHON" = "x"; then
|
||||||
AC_MSG_WARN([Python unavailable; some tests will not be run.])
|
AC_MSG_WARN([Python unavailable; some tests will not be run.])
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user