mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-03 02:13:29 +08:00
50b18ed68c
Fix the following musl build failure with gcc 14: daemon/old_main.c: In function 'old_main': daemon/old_main.c:56:11: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] 56 | if(!strcmp((which_mouse->opt_dev),"-")) fd=0; /* use stdin */ | ^~~~~~ daemon/old_main.c:35:1: note: include '<string.h>' or provide a declaration of 'strcmp' 34 | #include "headers/gpmInt.h" /* daemon internals */ +++ |+#include <string.h> 35 | While at it, add Upstream tags to other patches Fixes: - http://autobuild.buildroot.org/results/3192740863d57e72e90e622683e7b9fcc057fa8b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
45 lines
1.5 KiB
Diff
45 lines
1.5 KiB
Diff
From f04f24dd5ca5c1c13608b144ab66e2ccd47f106a Mon Sep 17 00:00:00 2001
|
|
From: Sergei Trofimovich <slyfox@gentoo.org>
|
|
Date: Sun, 19 Jan 2020 19:53:41 +0000
|
|
Subject: [PATCH] src/headers/daemon.h: avoid redefinition of
|
|
'last_selection_time'
|
|
|
|
Noticed build failure on gcc-10 as:
|
|
|
|
```
|
|
gcc -L/home/slyfox/dev/git/gpm/src -o gpm mice.o ... report.o tools.o -lm
|
|
ld: twiddler.o:gpm/src/headers/daemon.h:183:
|
|
multiple definition of `last_selection_time'; mice.o:gpm/src/headers/daemon.h:183: first defined here
|
|
ld: synaptics.o:git/gpm/src/headers/daemon.h:183:
|
|
multiple definition of `last_selection_time'; mice.o:git/gpm/src/headers/daemon.h:183: first defined here
|
|
```
|
|
|
|
gcc-10 will change the default from -fcommon to fno-common:
|
|
https://gcc.gnu.org/PR85678.
|
|
|
|
The error also happens if CFLAGS=-fno-common passed explicitly.
|
|
|
|
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
|
|
Upstream: https://github.com/telmich/gpm/commit/f04f24dd5ca5c1c13608b144ab66e2ccd47f106a
|
|
Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
|
|
---
|
|
src/headers/daemon.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/headers/daemon.h b/src/headers/daemon.h
|
|
index a8936ad..24a1a97 100644
|
|
--- a/src/headers/daemon.h
|
|
+++ b/src/headers/daemon.h
|
|
@@ -180,7 +180,7 @@ extern struct mouse_features mouse_table[3],
|
|
extern Gpm_Type mice[];
|
|
extern Gpm_Type *repeated_type;
|
|
|
|
-time_t last_selection_time;
|
|
+extern time_t last_selection_time;
|
|
|
|
|
|
|
|
--
|
|
2.20.1
|
|
|