diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-10-12 09:57:16 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-10-12 09:57:16 +0200 |
commit | 8d2f295ff24f065de21729ad6b2cf3b62449f06b (patch) | |
tree | fed2aa3f05b16a010522086adb1237e783ed51e0 /sys-block/gpart/files/gpart-0.1h-l64seek.patch | |
parent | net-misc/hashcash: Drop old (EAPI 0) (diff) | |
download | gentoo-8d2f295ff24f065de21729ad6b2cf3b62449f06b.tar.gz gentoo-8d2f295ff24f065de21729ad6b2cf3b62449f06b.tar.bz2 gentoo-8d2f295ff24f065de21729ad6b2cf3b62449f06b.zip |
sys-block/gpart: Drop old (EAPI 0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-block/gpart/files/gpart-0.1h-l64seek.patch')
-rw-r--r-- | sys-block/gpart/files/gpart-0.1h-l64seek.patch | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/sys-block/gpart/files/gpart-0.1h-l64seek.patch b/sys-block/gpart/files/gpart-0.1h-l64seek.patch deleted file mode 100644 index 8a14411a5ccc..000000000000 --- a/sys-block/gpart/files/gpart-0.1h-l64seek.patch +++ /dev/null @@ -1,71 +0,0 @@ ---- gpart-0.1h.orig/src/l64seek.c -+++ gpart-0.1h/src/l64seek.c -@@ -25,30 +25,11 @@ - } ostck[OSTACKLEN]; - static int osptr = -1; - --#if defined(__linux__) && defined(__i386__) --_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) --#endif -- -- -- - off64_t l64seek(int fd,off64_t offset,int whence) - { - off64_t ret = (off64_t)-1; - --#if defined(__linux__) && defined(__i386__) -- int iret; -- unsigned long ohi, olo; -- -- ohi = (unsigned long)((offset >> 32) & 0xFFFFFFFF); -- olo = (unsigned long)(offset & 0xFFFFFFFF); -- iret = _llseek(fd,ohi,olo,&ret,whence); -- if (iret == -1) -- ret = (off64_t)-1; --#endif -- --#if defined(__FreeBSD__) || (defined(__linux__) && defined(__alpha__)) - ret = lseek(fd,offset,whence); --#endif - - return (ret); - } ---- gpart-0.1h.orig/src/l64seek.h -+++ gpart-0.1h/src/l64seek.h -@@ -17,6 +17,8 @@ - #ifndef _L64SEEK_H - #define _L64SEEK_H - -+#include <sys/stat.h> -+#include <sys/types.h> - #include <unistd.h> - - /* -@@ -25,19 +27,7 @@ - * offsets. - */ - -- --#if defined(__linux__) --# include <linux/unistd.h> --# include <sys/types.h> -- typedef int64_t off64_t; --#endif -- -- --#if defined(__FreeBSD__) -- typedef off_t off64_t; --#endif -- -- -+typedef loff_t off64_t; - typedef off64_t s64_t; - - off64_t l64seek(int fd, off64_t offset, int whence); -@@ -45,5 +35,4 @@ - int l64opush(int); - s64_t l64opop(int); - -- - #endif |