aboutsummaryrefslogtreecommitdiffstats
path: root/package/ltrace/ltrace-0.6.0-events.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-12-03 04:46:12 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-12-05 00:43:07 -0800
commite1fff19a4f4f668d13aed18648e76e8b5b3b6578 (patch)
tree768e93d004ca7bebfa0a066747e1cabd1bed547f /package/ltrace/ltrace-0.6.0-events.patch
parente19201c98f554c267bcf3ad623dd6397615c8875 (diff)
downloadbuildroot-novena-e1fff19a4f4f668d13aed18648e76e8b5b3b6578.tar.gz
buildroot-novena-e1fff19a4f4f668d13aed18648e76e8b5b3b6578.zip
ltrace: bump to version 0.7.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/ltrace/ltrace-0.6.0-events.patch')
-rw-r--r--package/ltrace/ltrace-0.6.0-events.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/package/ltrace/ltrace-0.6.0-events.patch b/package/ltrace/ltrace-0.6.0-events.patch
deleted file mode 100644
index f3699a1b2..000000000
--- a/package/ltrace/ltrace-0.6.0-events.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-[PATCH] events.c: add similar system headers workaround as trace.c
-
-Needed for E.G. powerpc on uClibc.
-
-Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
----
- sysdeps/linux-gnu/events.c | 27 +++++++++++++++++++++++++++
- 1 file changed, 27 insertions(+)
-
-Index: ltrace-0.6.0/sysdeps/linux-gnu/events.c
-===================================================================
---- ltrace-0.6.0.orig/sysdeps/linux-gnu/events.c
-+++ ltrace-0.6.0/sysdeps/linux-gnu/events.c
-@@ -11,6 +11,33 @@
-
- #include "common.h"
-
-+/* If the system headers did not provide the constants, hard-code the normal
-+ values. */
-+#ifndef PTRACE_EVENT_FORK
-+
-+#define PTRACE_OLDSETOPTIONS 21
-+#define PTRACE_SETOPTIONS 0x4200
-+#define PTRACE_GETEVENTMSG 0x4201
-+
-+/* options set using PTRACE_SETOPTIONS */
-+#define PTRACE_O_TRACESYSGOOD 0x00000001
-+#define PTRACE_O_TRACEFORK 0x00000002
-+#define PTRACE_O_TRACEVFORK 0x00000004
-+#define PTRACE_O_TRACECLONE 0x00000008
-+#define PTRACE_O_TRACEEXEC 0x00000010
-+#define PTRACE_O_TRACEVFORKDONE 0x00000020
-+#define PTRACE_O_TRACEEXIT 0x00000040
-+
-+/* Wait extended result codes for the above trace options. */
-+#define PTRACE_EVENT_FORK 1
-+#define PTRACE_EVENT_VFORK 2
-+#define PTRACE_EVENT_CLONE 3
-+#define PTRACE_EVENT_EXEC 4
-+#define PTRACE_EVENT_VFORK_DONE 5
-+#define PTRACE_EVENT_EXIT 6
-+
-+#endif /* PTRACE_EVENT_FORK */
-+
- static Event event;
-
- Event *