diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-09-29 13:34:52 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-09-29 21:06:00 -0700 |
commit | c02c3122f6955f20669f9a0e96cfd13f024a2761 (patch) | |
tree | 7c8f80fac202f6190ff94ea1b786f87219b32fd5 /recipes/strace/strace-4.5.18 | |
parent | 62a3c30d2f843e76256345abb59da23abdf9af4a (diff) |
strace: Fix compilation for 4.5.14 and 4.5.18
* Delete drop-ctl-proc.patch its included in mips-sigcontext.patch.
* Delete strace-dont-include-linux-dirent-h.patch as it is not needed
for 4.5.18.
* Combine the SRC_URIs for mips and non mips in 4.5.14.
* Make 4.5.18 default for mips and mipsel.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/strace/strace-4.5.18')
-rw-r--r-- | recipes/strace/strace-4.5.18/strace-dont-include-linux-dirent-h.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes/strace/strace-4.5.18/strace-dont-include-linux-dirent-h.patch b/recipes/strace/strace-4.5.18/strace-dont-include-linux-dirent-h.patch deleted file mode 100644 index 1d50251417..0000000000 --- a/recipes/strace/strace-4.5.18/strace-dont-include-linux-dirent-h.patch +++ /dev/null @@ -1,23 +0,0 @@ -Index: strace-4.5.14/file.c -=================================================================== ---- strace-4.5.14.orig/file.c 2009-03-24 08:35:13.000000000 -0700 -+++ strace-4.5.14/file.c 2009-03-24 08:39:43.000000000 -0700 -@@ -35,12 +35,12 @@ - - #include <dirent.h> - #ifdef LINUX --#define dirent kernel_dirent --#define dirent64 kernel_dirent64 --#include <linux/types.h> --#include <linux/dirent.h> --#undef dirent --#undef dirent64 -+struct kernel_dirent { -+ unsigned long d_ino; -+ unsigned long d_off; -+ unsigned short d_reclen; -+ char d_name[1]; -+}; - #else - #define kernel_dirent dirent - #endif |