Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package m4 for openSUSE:Factory checked in at 2026-09-01 15:46:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/m4 (Old) and /work/SRC/openSUSE:Factory/.m4.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "m4" Tue Sep 1 15:46:54 2026 rev:49 rq:1374820 version:1.4.21 Changes: -------- --- /work/SRC/openSUSE:Factory/m4/m4.changes 2026-02-12 17:24:47.104718514 +0100 +++ /work/SRC/openSUSE:Factory/.m4.new.1265/m4.changes 2026-09-01 15:47:39.325288574 +0200 @@ -1,0 +2,5 @@ +Tue Aug 25 14:05:33 UTC 2026 - Andreas Schwab <[email protected]> + +- posix-spawn-faction.patch: Fix check for posix_spawn_file_actions_addchdir + +------------------------------------------------------------------- New: ---- posix-spawn-faction.patch ----------(New B)---------- New: - posix-spawn-faction.patch: Fix check for posix_spawn_file_actions_addchdir ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ m4.spec ++++++ --- /var/tmp/diff_new_pack.5iENzw/_old 2026-09-01 15:47:40.105315787 +0200 +++ /var/tmp/diff_new_pack.5iENzw/_new 2026-09-01 15:47:40.107315857 +0200 @@ -1,7 +1,7 @@ # # spec file for package m4 # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2026 Andreas Stieger <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -29,6 +29,8 @@ # https://savannah.gnu.org/users/ericb 0x71C2CC22B1C4602927D2F3AAA7A16B4A2527436A Source2: %{name}.keyring Provides: base:%{_bindir}/m4 +Patch0: posix-spawn-faction.patch +BuildRequires: automake %description GNU m4 is an implementation of the traditional Unix macro processor. @@ -40,6 +42,7 @@ %endif %build +autoreconf %configure \ --without-included-regex \ %if 0%{?mageia} ++++++ posix-spawn-faction.patch ++++++ Index: m4-1.4.21/m4/posix_spawn_faction_addchdir.m4 =================================================================== --- m4-1.4.21.orig/m4/posix_spawn_faction_addchdir.m4 +++ m4-1.4.21/m4/posix_spawn_faction_addchdir.m4 @@ -11,10 +11,13 @@ AC_DEFUN([gl_FUNC_POSIX_SPAWN_FILE_ACTIO AC_REQUIRE([gl_SPAWN_H_DEFAULTS]) AC_REQUIRE([AC_PROG_CC]) gl_POSIX_SPAWN - AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_addchdir]) + dnl Use AC_CHECK_DECLS, not AC_CHECK_FUNCS, because of glibc 2.44: + dnl <https://sourceware.org/bugzilla/show_bug.cgi?id=34437>. + AC_CHECK_DECLS([posix_spawn_file_actions_addchdir],,, + [[#include <spawn.h>]]) gl_CHECK_FUNCS_ANDROID([posix_spawn_file_actions_addchdir_np], [[#include <spawn.h>]]) - if test $ac_cv_func_posix_spawn_file_actions_addchdir = yes; then + if test $ac_cv_have_decl_posix_spawn_file_actions_addchdir = yes; then dnl This function is not yet standardized. Therefore override the dnl system's implementation always. REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR=1
