aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugh McMaster <hugh.mcmaster@outlook.com>2023-08-21 14:33:24 +1000
committerWerner Lemberg <wl@gnu.org>2023-08-24 20:47:00 +0200
commite3ada2f70d9ca1f43f29f0e895136266499e55e0 (patch)
treeb93b3b49a1d925e9e6a4b25837e700dc4f19330e
parent00b07598d96f7c6c96d2d32dbbb9cd11b3adeacd (diff)
downloadfreetype-e3ada2f70d9ca1f43f29f0e895136266499e55e0.tar.gz
builds/unix/configure.raw: Use variable to specify minimum Python version.
-rw-r--r--builds/unix/configure.raw6
1 files changed, 3 insertions, 3 deletions
diff --git a/builds/unix/configure.raw b/builds/unix/configure.raw
index 2c152022f..e3bacef9b 100644
--- a/builds/unix/configure.raw
+++ b/builds/unix/configure.raw
@@ -966,14 +966,14 @@ esac
AX_PTHREAD([have_pthread=yes], [have_pthread=no])
# Check for Python and docwriter
-
+PYTHON_MIN_VERSION=3.5
have_py3=no
have_docwriter=no
PIP=pip
AC_CHECK_PROGS([PYTHON], [python3 python], [missing])
if test "x$PYTHON" != "xmissing"; then
- AX_PROG_PYTHON_VERSION([3.5], [have_py3=yes], [])
+ AX_PROG_PYTHON_VERSION([$PYTHON_MIN_VERSION], [have_py3=yes], [])
if test "x$have_py3" = "xyes"; then
PIP="$PYTHON -m $PIP"
@@ -1162,7 +1162,7 @@ if test $have_docwriter = no; then
`make refdoc' will fail since pip package `docwriter' is not installed.
To install, run `$PIP install docwriter', or to use a Python
virtual environment, run `make refdoc-venv' (requires pip package
- `virtualenv'). These operations require Python >= 3.5.
+ `virtualenv'). These operations require Python >= $PYTHON_MIN_VERSION.
])
fi