diff options
author | 2024-05-03 19:26:45 +0200 | |
---|---|---|
committer | 2024-05-05 20:56:02 +0200 | |
commit | cd8ac917b3d393c7889e9c7a33ad33d80b8d9020 (patch) | |
tree | 4208e5618a54681f056ffc600432ba8a95fa25f0 /dev-util/dropwatch | |
parent | dev-python/uv: remove unused patch (diff) | |
download | gentoo-cd8ac917b3d393c7889e9c7a33ad33d80b8d9020.tar.gz gentoo-cd8ac917b3d393c7889e9c7a33ad33d80b8d9020.tar.bz2 gentoo-cd8ac917b3d393c7889e9c7a33ad33d80b8d9020.zip |
dev-util/dropwatch: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-util/dropwatch')
-rw-r--r-- | dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch | 73 | ||||
-rw-r--r-- | dev-util/dropwatch/files/dropwatch-1.4_p20150706-makefile.patch | 19 |
2 files changed, 0 insertions, 92 deletions
diff --git a/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch b/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch deleted file mode 100644 index 94770ab3dc91..000000000000 --- a/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch +++ /dev/null @@ -1,73 +0,0 @@ -commit a5aa2c3cbae207d12b9f2fded36a47031c55be36 -Author: Andrew Savchenko <bircoph@gmail.com> -Date: Thu Nov 17 00:04:47 2016 +0300 - - Fix build with recent binutils - - Gentoo-Bug: 457980 - Upstream Ticket: 5 - ---- a/src/lookup.c -+++ b/src/lookup.c -@@ -27,13 +27,13 @@ - #include <stdlib.h> - #include <stdio.h> - #include <sys/utsname.h> --#include <bfd.h> - #include <string.h> - #include <unistd.h> - #include <sys/types.h> - #include <sys/stat.h> - - #include "lookup.h" -+#include <bfd.h> - - extern struct lookup_methods bfd_methods; - extern struct lookup_methods kallsym_methods; ---- a/src/lookup.h -+++ b/src/lookup.h -@@ -28,6 +28,9 @@ - #include <stdlib.h> - #include <asm/types.h> - -+// satisfy PR 14072 in bfd.h -+#define PACKAGE 1 -+#define PACKAGE_VERSION 1 - - /* - * Initalization routine ---- a/src/lookup_bfd.c -+++ b/src/lookup_bfd.c -@@ -25,13 +25,13 @@ - #include <stdlib.h> - #include <stdio.h> - #include <sys/utsname.h> --#include <bfd.h> - #include <string.h> - #include <unistd.h> - #include <sys/types.h> - #include <sys/stat.h> - - #include "lookup.h" -+#include <bfd.h> - - - static int lookup_bfd_init(void) ---- a/src/lookup_kas.c -+++ b/src/lookup_kas.c -@@ -25,7 +25,6 @@ - #include <stdlib.h> - #include <stdio.h> - #include <sys/utsname.h> --#include <bfd.h> - #include <string.h> - #include <unistd.h> - #include <sys/types.h> -@@ -33,6 +32,7 @@ - #include <sys/queue.h> - - #include "lookup.h" -+#include <bfd.h> - - struct symbol_entry { - char *sym_name; diff --git a/dev-util/dropwatch/files/dropwatch-1.4_p20150706-makefile.patch b/dev-util/dropwatch/files/dropwatch-1.4_p20150706-makefile.patch deleted file mode 100644 index 42ff8f9e8365..000000000000 --- a/dev-util/dropwatch/files/dropwatch-1.4_p20150706-makefile.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/src/Makefile -+++ b/src/Makefile -@@ -1,14 +1,14 @@ - all: dropwatch - - CPPFLAGS += -D_GNU_SOURCE --CFLAGS += -g -Wall -Werror $(shell pkg-config --cflags libnl-3.0) -+CFLAGS += -Wall $(shell ${PKG_CONFIG} --cflags libnl-3.0) - LDLIBS += -lbfd -lreadline -lnl-3 -lnl-genl-3 - - OBJFILES := main.o lookup.o\ - lookup_bfd.o lookup_kas.o - - dropwatch: $(OBJFILES) -- $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ -+ $(LINK.o) $(CFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@ - - clean: - $(RM) dropwatch *.o |