diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-02-03 16:17:38 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-04 22:20:14 +0100 |
commit | f70e54d6e6cd2e3780da0fe512a2e12f92ee516c (patch) | |
tree | dd41816bc39c7f0a71b861eaa2c214cf04c8822d /sys-block/gpart | |
parent | sys-apps/shadow: remove unused files (diff) | |
download | gentoo-f70e54d6e6cd2e3780da0fe512a2e12f92ee516c.tar.gz gentoo-f70e54d6e6cd2e3780da0fe512a2e12f92ee516c.tar.bz2 gentoo-f70e54d6e6cd2e3780da0fe512a2e12f92ee516c.zip |
sys-block/gpart: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3791
Diffstat (limited to 'sys-block/gpart')
-rw-r--r-- | sys-block/gpart/files/gpart-0.1h-PIC.patch | 20 | ||||
-rw-r--r-- | sys-block/gpart/files/gpart-0.1h-no-_syscall.patch | 15 |
2 files changed, 0 insertions, 35 deletions
diff --git a/sys-block/gpart/files/gpart-0.1h-PIC.patch b/sys-block/gpart/files/gpart-0.1h-PIC.patch deleted file mode 100644 index e810bd99960d..000000000000 --- a/sys-block/gpart/files/gpart-0.1h-PIC.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- gpart-0.1h/src/l64seek.c -+++ gpart-0.1h/src/l64seek.c -@@ -26,7 +26,7 @@ - } ostck[OSTACKLEN]; - static int osptr = -1; - --#if defined(__linux__) && defined(__i386__) -+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) - _syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) - #endif - -@@ -36,7 +36,7 @@ - { - off64_t ret = (off64_t)-1; - --#if defined(__linux__) && defined(__i386__) -+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) - int iret; - unsigned long ohi, olo; - diff --git a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch b/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch deleted file mode 100644 index fe68d08b6f4b..000000000000 --- a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch +++ /dev/null @@ -1,15 +0,0 @@ -use syscall() rather than _syscall#() - -http://bugs.gentoo.org/163800 - ---- src/l64seek.c -+++ src/l64seek.c -@@ -27,7 +27,7 @@ - static int osptr = -1; - - #if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) --_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) -+#define _llseek(fd,hi,lo,res,wh) syscall(__NR__llseek,fd,hi,lo,res,wh) - #endif - - |