summaryrefslogtreecommitdiff
path: root/packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-07-13 07:38:03 (GMT)
committerGitHub <noreply@github.com>2017-07-13 07:38:03 (GMT)
commit45c5bb0f484cba724be2c6105801dcce9a1a82d9 (patch)
tree8fd1c8eaa2ef203009d72b6ca6348611dcc5ee1c /packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch
parent8f8e131d566af1f577d8fb6e62e6f121b7955472 (diff)
parentb32fcf7c1eea890a2bd3f88487f818ba241aabb1 (diff)
Merge pull request #767 from stilor/packages
Packages
Diffstat (limited to 'packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch')
-rw-r--r--packages/strace/4.5.19/120-fix-disabled-largefile-syscalls.patch22
1 files changed, 22 insertions, 0 deletions
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 0000000..a555fc2
--- /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"
+ };