Jeremy Bícha pushed to branch master at Debian and Ubuntu MATE Packaging Team / onboard
Commits:
-
97386f5b
by Jeremy Bícha at 2025-10-07T14:40:39-04:00
3 changed files:
Changes:
1 | +onboard (1.4.1-10.1) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Non-maintainer upload.
|
|
4 | + * Fix FTBFS with GCC 15. (Closes: #1097504)
|
|
5 | + |
|
6 | + -- Adrian Bunk <bunk@debian.org> Tue, 07 Oct 2025 16:26:00 +0300
|
|
7 | + |
|
1 | 8 | onboard (1.4.1-10) unstable; urgency=medium
|
2 | 9 | |
3 | 10 | [ Bo YU ]
|
1 | +Description: Fix FTBFS with GCC 15
|
|
2 | +Author: Adrian Bunk <bunk@debian.org>
|
|
3 | +Bug-Debian: https://bugs.debian.org/1097504
|
|
4 | + |
|
5 | +--- onboard-1.4.1.orig/Onboard/osk/osk_module.h
|
|
6 | ++++ onboard-1.4.1/Onboard/osk/osk_module.h
|
|
7 | +@@ -24,8 +24,7 @@
|
|
8 | +
|
|
9 | + #include <Python.h>
|
|
10 | + #include <structmember.h>
|
|
11 | +-
|
|
12 | +-typedef enum { false, true } bool;
|
|
13 | ++#include <stdbool.h>
|
|
14 | +
|
|
15 | + /**
|
|
16 | + * Python2 to Python3 conversion |
... | ... | @@ -13,3 +13,4 @@ |
13 | 13 | 1011_python-distutils-byebye.patch
|
14 | 14 | 1012_thread-state.patch
|
15 | 15 | 1013_slow-down-tests-for-riscv64.patch
|
16 | +gcc-15.patch |