summaryrefslogtreecommitdiffstats
path: root/recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch')
-rw-r--r--recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch b/recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch
deleted file mode 100644
index 70d3eb94..00000000
--- a/recipes-extended/ceph/ceph/0001-buffer.h-add-missing-header-file-due-to-gcc-upgrade.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 496465d9238109a93612e28682273e5bf576823b Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Sun, 22 May 2022 19:40:59 -0700
4Subject: [PATCH 1/2] buffer.h: add missing header file due to gcc upgrade
5
6The header file <memory> have been changed to be no longer included by other
7heades, thus requiring explicit include. See https://gcc.gnu.org/gcc-12/porting_to.html
8
9Upstream-Status: Pending
10
11Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12---
13 src/include/buffer.h | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/src/include/buffer.h b/src/include/buffer.h
17index 5c8b427d..88845ee6 100644
18--- a/src/include/buffer.h
19+++ b/src/include/buffer.h
20@@ -43,6 +43,7 @@
21 #include <list>
22 #include <vector>
23 #include <string>
24+#include <memory>
25 #if __cplusplus >= 201703L
26 #include <string_view>
27 #endif // __cplusplus >= 201703L
28--
292.36.0
30