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>
40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
From 06b00d53d8bd513ad5d262dc94a016c6fbf2d3aa Mon Sep 17 00:00:00 2001
|
|
From: Kamil Rytarowski <n54@gmx.com>
|
|
Date: Sat, 4 May 2013 01:30:17 +0200
|
|
Subject: [PATCH] Install unversioned solibrary
|
|
|
|
Unversioned solibraries are shipped with -devel packages in Linux
|
|
distros. Generate and install it for the consistency.
|
|
|
|
Upstream: https://github.com/telmich/gpm/commit/06b00d53d8bd513ad5d262dc94a016c6fbf2d3aa
|
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
|
---
|
|
src/Makefile.in | 7 +++----
|
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/src/Makefile.in b/src/Makefile.in
|
|
index 6b60ad3..7e9e2ef 100644
|
|
--- a/src/Makefile.in
|
|
+++ b/src/Makefile.in
|
|
@@ -79,7 +79,7 @@ prog/%: prog/%.o
|
|
# | $(SED) '\''s/\($*\)\.o\([ :]*\)/\1.o \1.lo\2/g'\'' > $(DEPDIR)/$@'
|
|
|
|
# Do it all!
|
|
-all: gpm lib/libgpm.so.@abi_lev@ @LIBGPM_A@ $(PROG)
|
|
+all: gpm lib/libgpm.so.@abi_lev@ lib/libgpm.so @LIBGPM_A@ $(PROG)
|
|
|
|
gpm: $(GOBJ)
|
|
$(CC) @LDFLAGS@ $(LDFLAGS) -o $@ $(GOBJ) @LIBS@ $(LIBS) -lm
|
|
@@ -168,9 +168,8 @@ lib/libgpm.so.@abi_full@: $(PICS)
|
|
@LDFLAGS@ $(LDFLAGS) -o lib/libgpm.so.@abi_full@ $^ @LIBS@ @SHARED_LIBS@ $(LIBS)
|
|
lib/libgpm.so.@abi_lev@: lib/libgpm.so.@abi_full@
|
|
$(LN_S) -f libgpm.so.@abi_full@ lib/libgpm.so.@abi_lev@
|
|
-# unneeded, isn't it?
|
|
-#lib/libgpm.so: lib/libgpm.so.@abi_full@
|
|
-# $(LN_S) -f libgpm.so.@abi_full@ lib/libgpm.so
|
|
+lib/libgpm.so: lib/libgpm.so.@abi_full@
|
|
+ $(LN_S) -f libgpm.so.@abi_full@ lib/libgpm.so
|
|
|
|
include $(DEPFILE)
|
|
|