summaryrefslogtreecommitdiffstats
path: root/recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch')
-rw-r--r--recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch b/recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch
deleted file mode 100644
index c27d6f3e..00000000
--- a/recipes-extended/ceph/ceph/0003-librdb-fix-build-with-gcc-13.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 937231991bd7e2cd578cf8cb6c1bedf611c5faef Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Sat, 29 Apr 2023 13:47:43 +0200
4Subject: [PATCH] librdb: fix build with gcc-13
5
6* fixes:
7ceph-15.2.15/src/librbd/api/PoolMetadata.h:28:19: error: 'uint64_t' has not bee
8n declared
9ceph/15.2.15-r0/ceph-15.2.15/src/librbd/api/PoolMetadata.cc:133:5: error: no declaration matche
10s 'int librbd::api::PoolMetadata<ImageCtxT>::list(librados::v14_2_0::IoCtx&, const std::string&, uint64_t, std::map<std::__cxx11::basic_string<cha
11r>, ceph::buffer::v15_2_0::list>*)'
12
13Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
14Upstream-Status: Pending
15---
16 src/librbd/api/PoolMetadata.h | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/src/librbd/api/PoolMetadata.h b/src/librbd/api/PoolMetadata.h
20index c0a81735..69ab574a 100644
21--- a/src/librbd/api/PoolMetadata.h
22+++ b/src/librbd/api/PoolMetadata.h
23@@ -7,6 +7,7 @@
24 #include "include/buffer_fwd.h"
25 #include "include/rados/librados_fwd.hpp"
26
27+#include <cstdint>
28 #include <map>
29 #include <string>
30