From ba18a4e16b0082c45c3b5486b4d5ac2891b8642e Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 24 Mar 2009 14:14:05 -0700 Subject: strace_4.5.14: Do not include linux/dirent{64}.h These headers are not exported by linux kernel anymore. So we need to get rid of using them. --- .../strace-dont-include-linux-dirent-h.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 recipes/strace/strace-4.5.14/strace-dont-include-linux-dirent-h.patch (limited to 'recipes/strace/strace-4.5.14') diff --git a/recipes/strace/strace-4.5.14/strace-dont-include-linux-dirent-h.patch b/recipes/strace/strace-4.5.14/strace-dont-include-linux-dirent-h.patch new file mode 100644 index 0000000000..1d50251417 --- /dev/null +++ b/recipes/strace/strace-4.5.14/strace-dont-include-linux-dirent-h.patch @@ -0,0 +1,23 @@ +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 + #ifdef LINUX +-#define dirent kernel_dirent +-#define dirent64 kernel_dirent64 +-#include +-#include +-#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 -- cgit v1.2.3