summaryrefslogtreecommitdiffstats
path: root/package/util-linux
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-01-20 15:00:31 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-01-20 15:00:31 +0000
commit72f846a97c602ed2697cdb4828418d6ef42b03f8 (patch)
tree1441e014c7b9ac97b19440c46c950c53edd95fbe /package/util-linux
parent51ffc1d58df52a26b0b386f933ad1f66c667d48f (diff)
fix fdisk llseek
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6144 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/util-linux')
-rw-r--r--package/util-linux/patches/100-llseek.patch (renamed from package/util-linux/patches/100-compile_fix.patch)32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/util-linux/patches/100-compile_fix.patch b/package/util-linux/patches/100-llseek.patch
index ed5bfa683..51bd09d6e 100644
--- a/package/util-linux/patches/100-compile_fix.patch
+++ b/package/util-linux/patches/100-llseek.patch
@@ -45,3 +45,35 @@ diff -ur util-linux.old/partx/partx.c util-linux.dev/partx/partx.c
#endif
static int
+diff -ur util-linux.old/fdisk/llseek.c util-linux.dev/fdisk/llseek.c
+--- util-linux.old/fdisk/llseek.c 2007-01-20 15:53:17.870636000 +0100
++++ util-linux.dev/fdisk/llseek.c 2007-01-20 15:55:33.458024160 +0100
+@@ -32,7 +32,7 @@
+ #ifndef __NR__llseek
+
+ /* no __NR__llseek on compilation machine - might give it explicitly */
+-static int _llseek (unsigned int fd, unsigned long oh,
++static int __llseek (unsigned int fd, unsigned long oh,
+ unsigned long ol, long long *result,
+ unsigned int origin) {
+ errno = ENOSYS;
+@@ -41,17 +41,8 @@
+
+ #endif
+
+-static long long my_llseek (unsigned int fd, long long offset,
+- unsigned int origin)
+-{
+- long long result;
+- int retval;
+-
+- retval = _llseek (fd, ((unsigned long long) offset) >> 32,
+- ((unsigned long long) offset) & 0xffffffff,
+- &result, origin);
+- return (retval == -1 ? (long long) retval : result);
+-}
++extern long long llseek(unsigned int fd, long long offset, unsigned int origin);
++#define my_llseek llseek
+
+ #endif /* __alpha__ */
+