mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
41cc0f2272
Fix the following build failure with gcc >= 14: parser.c: In function 'yyparse': parser.c:1196:16: error: implicit declaration of function 'yylex' [-Wimplicit-function-declaration] 1196 | yychar = yylex (); | ^~~~~ While at it, update Upstream tag of first patch Fixes: - http://autobuild.buildroot.org/results/33364071de4e5e51a2ac2337b82d145f71e0e64a Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
61 lines
2.5 KiB
Diff
61 lines
2.5 KiB
Diff
From dde68ed77114d7b19bfed3068edefc9dc0644445 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Sun, 16 Aug 2020 10:21:46 +0200
|
|
Subject: [PATCH] src/bandwidthd.h: fix build with gcc 10
|
|
|
|
Remove SubnetTable[SUBNET_NUM] and IpTable[IP_NUM] from bandwidthd.h as
|
|
they are already in bandwidthd.c otherwise the build with gcc 10 will
|
|
fail on:
|
|
|
|
/home/buildroot/autobuild/instance-2/output-1/host/bin/arm-buildroot-linux-gnueabihf-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -o bandwidthd bandwidthd.o graph.o extensions.o sqlight.o parser.o lexer.o pgsql.o -lpcap -lgd -lm -lresolv -L/home/buildroot/autobuild/instance-2/output-1/host/bin/../arm-buildroot-linux-gnueabihf/sysroot/usr/lib -lpng16 -lz -L/home/buildroot/autobuild/instance-2/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/bin/../../../../arm-buildroot-linux-gnueabihf/sysroot/usr/lib/.libs -lnl-genl-3 -lnl-3
|
|
/home/buildroot/autobuild/instance-2/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/10.2.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: graph.o:(.bss+0x4b0): multiple definition of `IpTable'; bandwidthd.o:(.bss+0x3e0): first defined here
|
|
/home/buildroot/autobuild/instance-2/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/10.2.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: graph.o:(.bss+0x18c): multiple definition of `SubnetTable'; bandwidthd.o:(.bss+0x88): first defined here
|
|
|
|
Fixes:
|
|
- http://autobuild.buildroot.org/results/6308c8ee38b6017215038d47c009b238113bd36f
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Upstream: https://github.com/nroach44/bandwidthd/commit/dde68ed77114d7b19bfed3068edefc9dc0644445
|
|
---
|
|
src/bandwidthd.h | 4 ++--
|
|
src/graph.c | 1 +
|
|
2 files changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/bandwidthd.h b/src/bandwidthd.h
|
|
index 870fdf7..eb4c830 100644
|
|
--- a/src/bandwidthd.h
|
|
+++ b/src/bandwidthd.h
|
|
@@ -134,7 +134,7 @@ struct SubnetData
|
|
{
|
|
uint32_t ip;
|
|
uint32_t mask;
|
|
-} SubnetTable[SUBNET_NUM];
|
|
+};
|
|
|
|
struct Statistics
|
|
{
|
|
@@ -157,7 +157,7 @@ struct IPData
|
|
uint32_t ip; // Host byte order
|
|
struct Statistics Send;
|
|
struct Statistics Receive;
|
|
-} IpTable[IP_NUM];
|
|
+};
|
|
|
|
struct SummaryData
|
|
{
|
|
diff --git a/src/graph.c b/src/graph.c
|
|
index b4b68f0..058e8c7 100644
|
|
--- a/src/graph.c
|
|
+++ b/src/graph.c
|
|
@@ -18,6 +18,7 @@
|
|
#include <resolv.h>
|
|
#endif
|
|
|
|
+extern struct SubnetData SubnetTable[SUBNET_NUM];
|
|
extern unsigned int SubnetCount;
|
|
extern struct config config;
|
|
|
|
--
|
|
2.27.0
|
|
|