Hi I've a partial fix for this; attached.
Part 1 is a Failure of a test to work under gcc 15 (bad declaration); fixed. Part 2 is that Ada doesn't build. No solution yet, Regards Alastair -- Alastair McKinstry, GPG: 82383CE9165B347C787081A2CBE6BB4E5D9AD3A5 e: [email protected], im: @alastair:mckinstry.ie https://mastodon.ie/@amckinstry
Author: Alastair McKinstry <[email protected]> Description: Fix error with GCC-15 (C standard 23) that causes incorrect test results and FTBFS Bug-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097622 Forwarded: no Last-Updated: 2025-09-11 --- a/cmake/modules/TestSignalType.c +++ b/cmake/modules/TestSignalType.c @@ -6,7 +6,8 @@ #ifdef __cplusplus extern "C" void (*signal (int, void (*)(int)))(int); #else -void (*signal ()) (); +void (*signal (int, void (*)(int)))(int); +// void (*signal ()) (); #endif int

