diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-04-11 11:53:56 +0200 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-04-11 15:26:00 -0500 |
commit | c8a40145ca455cf22abd392f20793a75368fdd80 (patch) | |
tree | 5e8b1ec31cd31ecee90199c38010224c3f1df61e /sys-block | |
parent | net-im/skypeforlinux: Add Multilib use flag support for elogind/systemd (diff) | |
download | gentoo-c8a40145ca455cf22abd392f20793a75368fdd80.tar.gz gentoo-c8a40145ca455cf22abd392f20793a75368fdd80.tar.bz2 gentoo-c8a40145ca455cf22abd392f20793a75368fdd80.zip |
sys-block/tgt: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/tgt/files/tgt-1.0.69-sysmacros.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/sys-block/tgt/files/tgt-1.0.69-sysmacros.patch b/sys-block/tgt/files/tgt-1.0.69-sysmacros.patch deleted file mode 100644 index 0b28f02e2821..000000000000 --- a/sys-block/tgt/files/tgt-1.0.69-sysmacros.patch +++ /dev/null @@ -1,38 +0,0 @@ -https://bugs.gentoo.org/580594 -https://github.com/fujita/tgt/pull/25 - -From b092c6fe330a2eacf4b1d4eb093fad8e2fbcaed9 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Sun, 27 Nov 2016 18:47:24 -0500 -Subject: [PATCH] fix build w/newer glibc -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Building with newer glibc versions fails like so: -bs_sg.c: In function ‘chk_sg_device’: -bs_sg.c:354:6: error: implicit declaration of function ‘major’ [-Werror=implicit-function-declaration] - if (major(st.st_rdev) == SCSI_GENERIC_MAJOR) - -This is because glibc is dropping the implicit sys/sysmacros.h include -from sys/types.h and making the few projects that need it include it -explicitly. ---- - usr/bs_sg.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/usr/bs_sg.c b/usr/bs_sg.c -index 66f4a3b22a18..fb544056f258 100644 ---- a/usr/bs_sg.c -+++ b/usr/bs_sg.c -@@ -32,6 +32,7 @@ - #include <linux/fs.h> - #include <linux/major.h> - #include <sys/ioctl.h> -+#include <sys/sysmacros.h> - #include <sys/types.h> - #include <sys/stat.h> - #include <sys/epoll.h> --- -2.11.0.rc2 - |