diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-11-11 08:06:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-11-11 08:06:51 +0000 |
commit | 5bafd9d1bc6da2666e8bb0c882d575c3c3873d33 (patch) | |
tree | 0f35c45a9ffb3268c2fd4c61c686313661d8ad47 /sys-block/gpart | |
parent | Clean up ebuild and fix poor memory usage #147705 by Andreas Kling. (diff) | |
download | gentoo-2-5bafd9d1bc6da2666e8bb0c882d575c3c3873d33.tar.gz gentoo-2-5bafd9d1bc6da2666e8bb0c882d575c3c3873d33.tar.bz2 gentoo-2-5bafd9d1bc6da2666e8bb0c882d575c3c3873d33.zip |
update patch to fix #109244
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'sys-block/gpart')
-rw-r--r-- | sys-block/gpart/files/digest-gpart-0.1h-r1 | 6 | ||||
-rw-r--r-- | sys-block/gpart/files/gpart-0.1h-PIC.patch | 13 |
2 files changed, 16 insertions, 3 deletions
diff --git a/sys-block/gpart/files/digest-gpart-0.1h-r1 b/sys-block/gpart/files/digest-gpart-0.1h-r1 index 24d6b303d6db..6e566770d5a7 100644 --- a/sys-block/gpart/files/digest-gpart-0.1h-r1 +++ b/sys-block/gpart/files/digest-gpart-0.1h-r1 @@ -1,2 +1,6 @@ -MD5 ee3a2d2dde70bcf404eb354b3d1ee6d4 gpart-0.1h.tar.gz 52352 MD5 ed479abcb1d7612669c4275a1c445085 gpart-0.1h-reiserfs-3.6.patch.gz 3658 +RMD160 b049e0ba9d6e1c54877c54ac0d1f12f9f7d235e2 gpart-0.1h-reiserfs-3.6.patch.gz 3658 +SHA256 769f5587853cb7d9c3ba4d0496bbb57d42d04ad561a42d24bcbe5f4723849a3c gpart-0.1h-reiserfs-3.6.patch.gz 3658 +MD5 ee3a2d2dde70bcf404eb354b3d1ee6d4 gpart-0.1h.tar.gz 52352 +RMD160 1cdfb1779801ee8755b05975ced24441a3a2b639 gpart-0.1h.tar.gz 52352 +SHA256 b9fdb064efabf5d63d7db6f07605c2fca3d011ecfa05ab3723dd98b9bde3a2ff gpart-0.1h.tar.gz 52352 diff --git a/sys-block/gpart/files/gpart-0.1h-PIC.patch b/sys-block/gpart/files/gpart-0.1h-PIC.patch index 6c57a9b1c66b..e810bd99960d 100644 --- a/sys-block/gpart/files/gpart-0.1h-PIC.patch +++ b/sys-block/gpart/files/gpart-0.1h-PIC.patch @@ -1,5 +1,5 @@ ---- gpart-0.1h/src/l64seek.c.orig 2005-02-11 20:29:24.000000000 -0500 -+++ gpart-0.1h/src/l64seek.c 2005-02-11 20:29:46.000000000 -0500 +--- gpart-0.1h/src/l64seek.c ++++ gpart-0.1h/src/l64seek.c @@ -26,7 +26,7 @@ } ostck[OSTACKLEN]; static int osptr = -1; @@ -9,3 +9,12 @@ _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; + |