1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- From fddea49ba296fa5d265ec50f407632d94cca6dcf 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.
- Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
- ---
- configure.ac | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
- diff --git a/configure.ac b/configure.ac
- index 306127274e0..1bb63cbd5b2 100644
- --- a/configure.ac
- +++ b/configure.ac
- @@ -95,6 +95,11 @@ AC_DEFUN([PY_CHECK_EMSCRIPTEN_PORT], [
- AS_VAR_POPDEF([py_libs])
- ])
-
- +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
- @@ -7232,11 +7237,6 @@ AC_ARG_ENABLE([test-modules],
- AC_MSG_RESULT([$TEST_MODULES])
- AC_SUBST([TEST_MODULES])
-
- -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
- dnl AIX has shadow passwords, but access is not via getspent()
- --
- 2.43.0
|