]> 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:28:18 +0000 (10:28 +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 2928c064cf116315114cf2fa9e105c02dc30fa3d..d8c240efdec600b45609304d4360b107ba3b320a 100755 (executable)
--- 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"
 
 
 
index d837780eb829b820da081ef08fe453c9d843ca6b..cd749d07b50bfd1095c1940d1c0cea73b943a986 100644 (file)
@@ -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])