Fabrice Fontaine | 8414e31 | 2020-09-05 14:26:11 +0200 | [diff] [blame] | 1 | From 844f61069896fe3f549ab425d731c061028f697c Mon Sep 17 00:00:00 2001 |
| 2 | From: Adrian Bunk <bunk@stusta.de> |
| 3 | Date: Tue, 12 May 2020 09:44:05 +0300 |
| 4 | Subject: src: Fix build with gcc 10 |
| 5 | |
| 6 | gcc 10 enables -fno-common by default which fails without these typedefs |
| 7 | |
| 8 | Signed-off-by: Adrian Bunk <bunk@stusta.de> |
| 9 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 10 | |
| 11 | [Retrieved from: |
| 12 | http://git.yoctoproject.org/cgit/cgit.cgi/matchbox-window-manager/commit/?id=844f61069896fe3f549ab425d731c061028f697c] |
| 13 | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
| 14 | --- |
| 15 | src/mbtheme.h | 2 +- |
| 16 | src/structs.h | 2 +- |
| 17 | 2 files changed, 2 insertions(+), 2 deletions(-) |
| 18 | |
| 19 | diff --git a/src/mbtheme.h b/src/mbtheme.h |
| 20 | index aa9a7c5..ad03bde 100644 |
| 21 | --- a/src/mbtheme.h |
| 22 | +++ b/src/mbtheme.h |
| 23 | @@ -46,7 +46,7 @@ typedef struct _mb_theme_param |
| 24 | |
| 25 | } MBThemeParam; |
| 26 | |
| 27 | -enum { |
| 28 | +typedef enum { |
| 29 | LAYER_GRADIENT_HORIZ = 1, |
| 30 | LAYER_GRADIENT_VERT, |
| 31 | LAYER_LABEL, |
| 32 | diff --git a/src/structs.h b/src/structs.h |
| 33 | index 24985e7..8f53e72 100644 |
| 34 | --- a/src/structs.h |
| 35 | +++ b/src/structs.h |
| 36 | @@ -148,7 +148,7 @@ |
| 37 | |
| 38 | /* Atoms, if you change these check ewmh_init() first */ |
| 39 | |
| 40 | -enum { |
| 41 | +typedef enum { |
| 42 | WM_STATE = 0, |
| 43 | WM_CHANGE_STATE, |
| 44 | WM_PROTOCOLS, |
| 45 | -- |
| 46 | cgit v1.2.2-1-g5e49 |
| 47 | |