]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add python3.8 to the autoconf search list
authorOndřej Surý <ondrej@isc.org>
Wed, 22 Sep 2021 08:24:16 +0000 (10:24 +0200)
committerOndřej Surý <ondrej@isc.org>
Wed, 22 Sep 2021 08:24:16 +0000 (10:24 +0200)
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.

configure
configure.ac

index 4fd6da718f1387bf60282151c62c88cff6f3ffc1..a56ea160c205db2c2a96feb2120682cd7b4103ee 100755 (executable)
--- a/configure
+++ b/configure
@@ -12635,7 +12635,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"
 
 
 
index e5f4cfff3882d6d1d86fd490009162a336d7cac8..e0b4d79a74d3b328f6a967c11924a5e98ae2b632 100644 (file)
@@ -229,7 +229,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])