summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch')
-rw-r--r--meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch b/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch
deleted file mode 100644
index 2c8783e192..0000000000
--- a/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 6ae0fb9b49047cef338262e30273f63139fd1261 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 19 Jan 2016 18:18:52 -0800
4Subject: [PATCH 01/11] include sys/types.h for mode_t
5
6mode_t is used in target.h, so we need to include sys/types.h to get the
7defintion
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 gdb/gdbserver/target.h | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h
16index fce54e05ad..278cee78a8 100644
17--- a/gdb/gdbserver/target.h
18+++ b/gdb/gdbserver/target.h
19@@ -29,6 +29,7 @@
20 #include "mem-break.h"
21 #include "btrace-common.h"
22 #include <vector>
23+#include <sys/types.h>
24
25 struct emit_ops;
26 struct buffer;
27--
282.18.0
29