From e7deac3aad394325f9e6fc6fda41d34ec94a59e0 Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Fri, 19 May 2017 21:58:46 -0700 Subject: Switch comp.libs/tools and debug to new framework. Signed-off-by: Alexey Neyman --- .../120-fix-disabled-largefile-syscalls.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch (limited to 'packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch') diff --git a/packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch b/packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch new file mode 100644 index 00000000..a555fc24 --- /dev/null +++ b/packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch @@ -0,0 +1,22 @@ +diff -durN strace-4.5.19.orig/syscall.c strace-4.5.19/syscall.c +--- strace-4.5.19.orig/syscall.c 2009-10-28 18:47:18.000000000 +0100 ++++ strace-4.5.19/syscall.c 2009-10-28 18:47:18.000000000 +0100 +@@ -110,6 +110,18 @@ + #define TP TRACE_PROCESS + #define TS TRACE_SIGNAL + ++#ifndef HAVE_STATFS64 ++/* ++ * Ugly hacks for systems that do not have LFS ++ */ ++ ++#define sys_truncate64 sys_truncate ++#define sys_ftruncate64 sys_ftruncate ++#define sys_getdents64 sys_getdents ++#define sys_statfs64 sys_statfs ++#define sys_fstatfs64 sys_fstatfs ++#endif ++ + static const struct sysent sysent0[] = { + #include "syscallent.h" + }; -- cgit v1.2.3