From: Ondřej Surý Date: Wed, 22 Sep 2021 08:24:16 +0000 (+0200) Subject: Add python3.8 to the autoconf search list X-Git-Tag: v9.11.36~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2663509c128943f6c54ebfc0875138295039092f;p=thirdparty%2Fbind9.git Add python3.8 to the autoconf search list It was discovered that FreeBSD doesn't setup alias from default Python version neither to python3 nor python, and thus the configure step would fail to find working python installation. --- diff --git a/configure b/configure index 2928c064cf1..d8c240efdec 100755 --- a/configure +++ b/configure @@ -13127,7 +13127,7 @@ 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" +default_with_python="python python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7" diff --git a/configure.ac b/configure.ac index d837780eb82..cd749d07b50 100644 --- a/configure.ac +++ b/configure.ac @@ -272,7 +272,7 @@ 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" +default_with_python="python python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7" AC_ARG_VAR([PYTHON], [path to python executable])