git: 30d41cf49473 - main - sysutils/xfce4-systemload-plugin: Fix build on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 29 Dec 2024 10:26:45 UTC
The branch main has been updated by madpilot:
URL: https://cgit.FreeBSD.org/ports/commit/?id=30d41cf4947383dd0fcd061aca764ce9572062cc
commit 30d41cf4947383dd0fcd061aca764ce9572062cc
Author: Guido Falsi <madpilot@FreeBSD.org>
AuthorDate: 2024-12-29 10:25:44 +0000
Commit: Guido Falsi <madpilot@FreeBSD.org>
CommitDate: 2024-12-29 10:25:44 +0000
sysutils/xfce4-systemload-plugin: Fix build on i386
Removed old unneeded patch.
Reported by: pkg-fallout
---
.../files/patch-panel-plugin_network.cc | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git a/sysutils/xfce4-systemload-plugin/files/patch-panel-plugin_network.cc b/sysutils/xfce4-systemload-plugin/files/patch-panel-plugin_network.cc
deleted file mode 100644
index 6e36bc2b8595..000000000000
--- a/sysutils/xfce4-systemload-plugin/files/patch-panel-plugin_network.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- panel-plugin/network.cc.orig 2022-02-16 18:57:05 UTC
-+++ panel-plugin/network.cc
-@@ -39,7 +39,7 @@ static gint
- #include <glibtop/netload.h>
-
- static gint
--read_netload_libgtop (gulong *bytes)
-+read_netload_libgtop (guint64 *bytes)
- {
- glibtop_netlist netlist;
- char **interfaces = glibtop_get_netlist (&netlist);
-@@ -60,7 +60,7 @@ static gint
- #else
-
- static gint
--read_netload_libgtop (gulong *bytes)
-+read_netload_libgtop (guint64 *bytes)
- {
- return -1;
- }
-@@ -70,7 +70,7 @@ static gint
- static const char *const PROC_NET_NETSTAT = "/proc/net/netstat";
-
- static gint
--read_netload_proc (gulong *bytes)
-+read_netload_proc (guint64 *bytes)
- {
- char buf[4*1024];
- unsigned long long dummy, in_octets, out_octets;