summaryrefslogtreecommitdiffstats
path: root/package/ltrace/ltrace-ppc-waitstatus.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-ppc-waitstatus.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-ppc-waitstatus.patch')
-rw-r--r--package/ltrace/ltrace-ppc-waitstatus.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/package/ltrace/ltrace-ppc-waitstatus.patch b/package/ltrace/ltrace-ppc-waitstatus.patch
new file mode 100644
index 000000000..fa87ea43e
--- /dev/null
+++ b/package/ltrace/ltrace-ppc-waitstatus.patch
@@ -0,0 +1,37 @@
+From faa8dfe0507b56fb8a7666e326177aec7f364071 Mon Sep 17 00:00:00 2001
+From: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Date: Mon, 3 Dec 2012 11:12:08 -0300
+Subject: [PATCH] Fix build failure on ppc
+
+ppc/trace.c is using waitstatus bits without including the appropiate
+headers, leading to a build failure:
+
+libtool: link:
+/home/gustavoz/b/test/output/host/usr/bin/powerpc-buildroot-linux-uclibc-gcc
+-Wall -Wsign-compare -Wfloat-equal -Wformat-security -pipe -Os -o ltrace
+main.o ./.libs/libltrace.a -lelf
+./.libs/libltrace.a(lt1-trace.o): In function `syscall_p':
+trace.c:(.text+0x28): undefined reference to `WIFSTOPPED'
+trace.c:(.text+0x40): undefined reference to `WSTOPSIG'
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+---
+ sysdeps/linux-gnu/ppc/trace.c | 2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+diff --git a/sysdeps/linux-gnu/ppc/trace.c b/sysdeps/linux-gnu/ppc/trace.c
+index c152101..4357a1e 100644
+--- a/sysdeps/linux-gnu/ppc/trace.c
++++ b/sysdeps/linux-gnu/ppc/trace.c
+@@ -29,6 +29,8 @@
+ #include <errno.h>
+ #include <signal.h>
+ #include <string.h>
++#include <sys/types.h>
++#include <sys/wait.h>
+
+ #include "backend.h"
+ #include "breakpoint.h"
+--
+1.7.8.6
+