https://www.python.org/downloads/release/python-3142/ https://docs.python.org/release/3.14.2/whatsnew/changelog.html Rebased all patches. Added patch 0010 to fix build error reported by Julien: https://gitlab.com/jolivain/buildroot/-/jobs/12589702787 Kodi added the same patch: https://github.com/xbmc/xbmc/blob/master/tools/depends/target/python3/process-vm-ready.patch Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
54 lines
1.5 KiB
Diff
54 lines
1.5 KiB
Diff
From 930c4763ac46d180880615eceeb68698e9b35e85 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
Date: Tue, 6 Feb 2024 22:46:59 +0100
|
|
Subject: [PATCH] configure.ac: move PY_STDLIB_MOD_SET_NA further up
|
|
|
|
We will need PY_STDLIB_MOD_SET_NA in next patches further up in the
|
|
configure.ac script.
|
|
|
|
Upstream: N/A
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
[ Vincent Fazio: ported to Python 3.13.2 ]
|
|
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
|
|
[ Bernd Kuhls: ported to Python 3.14.2]
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
---
|
|
configure.ac | 13 ++++++-------
|
|
1 file changed, 6 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 5395e82384b..ec9a24c5311 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -95,6 +95,12 @@ AC_DEFUN([PY_CHECK_EMSCRIPTEN_PORT], [
|
|
AS_VAR_POPDEF([py_libs])
|
|
])
|
|
|
|
+# stdlib
|
|
+AC_DEFUN([PY_STDLIB_MOD_SET_NA], [
|
|
+ m4_foreach([mod], [$@], [
|
|
+ AS_VAR_SET([py_cv_module_]mod, [n/a])])
|
|
+])
|
|
+
|
|
AC_SUBST([BASECPPFLAGS])
|
|
if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
|
|
# If we're building out-of-tree, we need to make sure the following
|
|
@@ -7701,13 +7707,6 @@ if test -n "$_PYTHREAD_NAME_MAXLEN"; then
|
|
fi
|
|
AC_SUBST([_PYTHREAD_NAME_MAXLEN])
|
|
|
|
-
|
|
-# stdlib
|
|
-AC_DEFUN([PY_STDLIB_MOD_SET_NA], [
|
|
- m4_foreach([mod], [$@], [
|
|
- AS_VAR_SET([py_cv_module_]mod, [n/a])])
|
|
-])
|
|
-
|
|
# stdlib not available
|
|
dnl Modules that are not available on some platforms
|
|
AS_CASE([$ac_sys_system],
|
|
--
|
|
2.47.3
|
|
|