aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace-4.6/sigmask.patch
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2012-06-12 10:59:08 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-15 15:09:18 +0100
commitfec92fb65a0135b17fea49a239bd9a73c96bba51 (patch)
tree1a48b1beb030c480bd8576d6e6d974f2f93cd0c2 /meta/recipes-devtools/strace/strace-4.6/sigmask.patch
parent93aa773c4c03c21a70d7d53cf93e43416e17007c (diff)
downloadopenembedded-core-contrib-fec92fb65a0135b17fea49a239bd9a73c96bba51.tar.gz
strace: update to 4.7
Removed the x32 specific patches, since they seem to be fully integrated into 4.7. Also removed the sigmask patch, since the new version doesn't seem to use sigmask anymore. Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Diffstat (limited to 'meta/recipes-devtools/strace/strace-4.6/sigmask.patch')
-rw-r--r--meta/recipes-devtools/strace/strace-4.6/sigmask.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/recipes-devtools/strace/strace-4.6/sigmask.patch b/meta/recipes-devtools/strace/strace-4.6/sigmask.patch
deleted file mode 100644
index 99962af48a..0000000000
--- a/meta/recipes-devtools/strace/strace-4.6/sigmask.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-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 <raj.khem@gmail.com>
-
-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"
- };