Hi,

On Tue, 2026-02-17 at 08:10 +0100, John Paul Adrian Glaubitz wrote:
> I'm testing the attached patch now which was cherry-picked from [1].

Patch works, but two additional changes are required that I have folded
into this patch. See attached.

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer
`. `'   Physicist
  `-    GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913
--- boost1.88-1.88.0.orig/libs/context/src/asm/ontop_sparc64_sysv_elf_gas.S
+++ boost1.88-1.88.0/libs/context/src/asm/ontop_sparc64_sysv_elf_gas.S
@@ -45,6 +45,6 @@ ontop_fcontext:
 
 	jmpl %o2, %g0
 	 nop
-.size	jump_fcontext,.-jump_fcontext
+.size	ontop_fcontext,.-ontop_fcontext
 # Mark that we don't need executable stack.
 .section .note.GNU-stack,"",%progbits
--- boost1.88-1.88.0.orig/libs/process/src/error.cpp
+++ boost1.88-1.88.0/libs/process/src/error.cpp
@@ -100,7 +100,7 @@ struct exit_code_category final : public
 #            if defined(SIGILL)
                     case SIGILL: return "SIGILL:    Illegal Instruction";
 #            endif
-#            if defined(SIGINFO) && !defined(SIGPWR)
+#            if defined(SIGINFO) && SIGINFO != SIGPWR
                     case SIGINFO: return "SIGINFO:   A synonym for SIGPWR";
 #            endif
 #            if defined(SIGINT)
@@ -112,7 +112,7 @@ struct exit_code_category final : public
 #            if defined(SIGKILL)
                     case SIGKILL: return "SIGKILL:   Kill signal";
 #            endif
-#            if defined(SIGLOST)
+#            if defined(SIGLOST) && SIGLOST != SIGPWR
                     case SIGLOST: return "SIGLOST:   File lock lost (unused)";
 #            endif
 #            if defined(SIGPIPE)

Reply via email to