Codebase list openbox-menu / 5bde62e
Fix FTBFS with gcc-10. (Closes: #957633) Mateusz Łukasik 3 years ago
3 changed file(s) with 35 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 openbox-menu (0.8.0+hg20161009-2) UNRELEASED; urgency=medium
1
2 * Acknowledge NMU, thanks to Adrian Bunk.
3 * Fix FTBFS with gcc-10. (Closes: #957633)
4
5 -- Mateusz Łukasik <mati75@linuxmint.pl> Thu, 13 Aug 2020 15:53:31 +0200
6
07 openbox-menu (0.8.0+hg20161009-1.1) unstable; urgency=low
18
29 * Non-maintainer upload.
0 Description: Fix FTBFS with gcc-10
1 Author: Mateusz Łukasik <mati75@linuxmint.pl>
2 Bug-Debian: https://bugs.debian.org/957633
3 Last-Update: 2020-08-13
4
5 --- a/src/openbox-menu.h
6 +++ b/src/openbox-menu.h
7 @@ -83,7 +83,7 @@ gboolean context_get_persistent (OB_Menu
8 void context_free(OB_Menu *);
9
10 #ifdef WITH_ICONS
11 - GtkIconTheme *icon_theme;
12 + extern GtkIconTheme *icon_theme;
13 #endif
14
15 #endif // __OPENBOXMENU_APP__
16 --- a/src/utils.c
17 +++ b/src/utils.c
18 @@ -168,7 +168,7 @@ clean_exec (MenuCacheApp *app)
19
20 #if WITH_ICONS
21
22 -extern GtkIconTheme *icon_theme;
23 +GtkIconTheme *icon_theme;
24
25 /****f* utils/item_icon_path
26 * OUTPUT
00 debian_build.patch
1 fix-ftbfs-gcc-10.patch