diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-04-11 20:15:36 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-04-11 21:12:08 +0200 |
commit | 3c9d2b811abb9700f7ac18d8626f4820e74db790 (patch) | |
tree | eb3e3377ff447531fdb2d43f7fd8b972b3edfa5b /sys-apps/iproute2 | |
parent | dev-db/mysql-init-scripts: update tmpfiles path (diff) | |
download | gentoo-3c9d2b811abb9700f7ac18d8626f4820e74db790.tar.gz gentoo-3c9d2b811abb9700f7ac18d8626f4820e74db790.tar.bz2 gentoo-3c9d2b811abb9700f7ac18d8626f4820e74db790.zip |
sys-apps/iproute2: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/24994
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/iproute2')
-rw-r--r-- | sys-apps/iproute2/files/iproute2-5.16.0-fix-ax25.h-include-for-musl.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-apps/iproute2/files/iproute2-5.16.0-fix-ax25.h-include-for-musl.patch b/sys-apps/iproute2/files/iproute2-5.16.0-fix-ax25.h-include-for-musl.patch deleted file mode 100644 index 28307131a3db..000000000000 --- a/sys-apps/iproute2/files/iproute2-5.16.0-fix-ax25.h-include-for-musl.patch +++ /dev/null @@ -1,25 +0,0 @@ -https://marc.info/?l=linux-netdev&m=164206157726666&w=2 - -From: Sam James <sam@gentoo.org> -Date: Thu, 13 Jan 2022 08:05:33 +0000 -Subject: [PATCH] Fix ax25.h include for musl - -ax25.h isn't guaranteed to be avilable in netax25/*; -it's dependent on our choice of libc (it's not available -on musl at least) [0]. - -Let's use the version from linux-headers. - -[0] https://sourceware.org/glibc/wiki/Synchronizing_Headers -Bug: https://bugs.gentoo.org/831102 ---- a/lib/ax25_ntop.c -+++ b/lib/ax25_ntop.c -@@ -2,7 +2,7 @@ - - #include <errno.h> - #include <sys/socket.h> --#include <netax25/ax25.h> -+#include <linux/ax25.h> - - #include "utils.h" - |