From 87b3c3f81344a9d54f94a5e4b8e13b8b384dea1f Mon Sep 17 00:00:00 2001 From: Shane Wang Date: Sun, 22 Jan 2012 17:19:29 +0800 Subject: strace: upgrade to 4.6 (From OE-Core rev: 2b81cf3d76241572c299a0a58a3d0ca022bef9a0) Signed-off-by: Shane Wang Signed-off-by: Richard Purdie --- .../strace/strace-4.6/sigmask.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta/recipes-devtools/strace/strace-4.6/sigmask.patch (limited to 'meta/recipes-devtools/strace/strace-4.6') diff --git a/meta/recipes-devtools/strace/strace-4.6/sigmask.patch b/meta/recipes-devtools/strace/strace-4.6/sigmask.patch new file mode 100644 index 0000000000..99962af48a --- /dev/null +++ b/meta/recipes-devtools/strace/strace-4.6/sigmask.patch @@ -0,0 +1,23 @@ +sigmask is a macro which is dropped if BSD compatibility is +not enabled. So we check if the macro does not exist then +we define it to __sigmask + +Upstream-Status: Inappropriate [configuration] +Signed-off-by: Khem Raj + +Index: strace-4.5.20/signal.c +=================================================================== +--- strace-4.5.20.orig/signal.c 2010-02-23 13:26:16.000000000 -0800 ++++ strace-4.5.20/signal.c 2011-07-20 23:06:35.842339197 -0700 +@@ -140,6 +140,11 @@ + #endif + #endif /* LINUX */ + ++#if !defined (sigmask) && defined (__sigmask) ++/* Compute mask for signal SIG. */ ++#define sigmask(sig) __sigmask(sig) ++#endif /* sigmask */ ++ + const char *const signalent0[] = { + #include "signalent.h" + }; -- cgit v1.2.3-54-g00ecf