diff options
author | 2024-12-23 12:25:40 +0100 | |
---|---|---|
committer | 2024-12-23 13:14:14 +0100 | |
commit | 40b29f743cec30dd03b61d1749fb27ff9dbbd623 (patch) | |
tree | 3a5f93cf54b01ebb4a7ef9726f5a1d5db6af339a /app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch | |
parent | app-misc/cstream: drop 3.2.1-r1 (diff) | |
download | gentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.tar.gz gentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.tar.bz2 gentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.zip |
app-misc/tmux-mem-cpu-load: drop 3.7.0
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch')
-rw-r--r-- | app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch b/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch deleted file mode 100644 index 77e905aa8fb9..000000000000 --- a/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://github.com/thewtex/tmux-mem-cpu-load/pull/95 - -From 59cca005e4c6d2fe9f90574a99afe78dcb6d8539 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Tue, 18 Apr 2023 04:25:00 +0100 -Subject: [PATCH] Fix build with GCC 13 - -GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some -are no longer transitively included. - -See https://gnu.org/software/gcc/gcc-13/porting_to.html. - -Bug: https://bugs.gentoo.org/895304 ---- a/common/cpu.h -+++ b/common/cpu.h -@@ -19,6 +19,7 @@ - #ifndef CPU_H_ - #define CPU_H_ - -+#include <cstdint> - #include <sys/types.h> - - #if defined(__APPLE__) && defined(__MACH__) - |