From ecef65b3c464aa4b74da9249ca472cc2594b387d Mon Sep 17 00:00:00 2001 From: Michael Heimpold Date: Sat, 4 May 2024 21:54:50 +0200 Subject: [PATCH] gensio: add patch with workaround for buildbots (refs #24047) This should solve the issue found on the buildbots: -snip- ... checking consistency of all components of python development environment... yes ./configure: line 24172: test: =: unary operator expected checking for pam_start in -lpam... (cached) no ... -snap- For still unknown reason, AX_PYTHON_DEVEL from the included m4 file is not used which would set the variable the correct way. Signed-off-by: Michael Heimpold --- ...-Ensure-that-ax_python_devel_found_is_defined.patch | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch diff --git a/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch b/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch new file mode 100644 index 0000000000..adf60ce3a7 --- /dev/null +++ b/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch @@ -0,0 +1,10 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -2002,6 +2002,7 @@ if test "x$trypython" = "xyes"; then + PYTHON_CPPFLAGS="$pythoncflags" + fi + AX_PYTHON_DEVEL([], [true]) ++ ax_python_devel_found=yes + else + ax_python_devel_found=no + fi -- 2.30.2