summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-extended/etcd/etcd-cpp-apiv3')
-rw-r--r--meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch33
-rw-r--r--meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch68
-rw-r--r--meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch27
3 files changed, 60 insertions, 68 deletions
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch
new file mode 100644
index 0000000000..87000b663d
--- /dev/null
+++ b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch
@@ -0,0 +1,33 @@
1From aeb34f58782fb6d06aea4f5cbeccb23a0224466e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 4 Sep 2024 14:54:42 -0700
4Subject: [PATCH] Replacing GPR_ASSERT with c assert
5
6Latest GRPC >= 2.66 has dropped GRPC_ASSERT macro [1]
7
8[1] https://github.com/grpc/grpc/commit/0e23c2259da967a037e839e80cafd62bc6f9f68e
9
10Upstream-Status: Submitted [https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3/pull/281]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 src/v3/Action.cpp | 9 +++++++++
14 1 file changed, 9 insertions(+)
15
16--- a/src/v3/Action.cpp
17+++ b/src/v3/Action.cpp
18@@ -2,6 +2,15 @@
19 #include <grpc/support/log.h>
20 #include <grpcpp/support/status.h>
21 #include "etcd/v3/action_constants.hpp"
22+#include <cstdlib>
23+
24+#ifndef GPR_ASSERT
25+#define GPR_ASSERT(x) \
26+ if (!(x)) { \
27+ fprintf(stderr, "%s:%d assert failed\n", __FILE__, __LINE__); \
28+ abort(); \
29+}
30+#endif
31
32 etcdv3::Action::Action(etcdv3::ActionParameters const& params) {
33 parameters = params;
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch
deleted file mode 100644
index ce12d4270a..0000000000
--- a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch
+++ /dev/null
@@ -1,68 +0,0 @@
1From cb79329010d73e36ce64830914005f1c17f8f53c Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= <peron.clem@gmail.com>
3Date: Sat, 23 Sep 2023 11:32:18 +0200
4Subject: [PATCH] cmake: fix when cross compiling
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9In order to generate protobuf files CMake need to use the protoc
10and grpc-cpp-plugin compiled for the host architecture.
11
12Unfortunately, the protoc and grpc-cpp-plugin in the gRPC CMake
13configuration file are the one for the target architecture.
14
15Fix this by properly finding the correct executable when
16CMake is cross compiling.
17
18Signed-off-by: Clément Péron <peron.clem@gmail.com>
19---
20Upstream-Status: Pending
21
22 CMakeLists.txt | 28 ++++++++++++++++++++++++++--
23 1 file changed, 26 insertions(+), 2 deletions(-)
24
25diff --git a/CMakeLists.txt b/CMakeLists.txt
26index 5aa1310..80ebad2 100644
27--- a/CMakeLists.txt
28+++ b/CMakeLists.txt
29@@ -120,10 +120,34 @@ if(Protobuf_PROTOC_EXECUTABLE)
30 endif()
31 endif()
32
33+# When cross compiling we look for the native protoc compiler
34+# overwrite protobuf::protoc with the proper protoc
35+if(CMAKE_CROSSCOMPILING)
36+ find_program(Protobuf_PROTOC_EXECUTABLE REQUIRED NAMES protoc)
37+ if(NOT TARGET protobuf::protoc)
38+ add_executable(protobuf::protoc IMPORTED)
39+ endif()
40+ set_target_properties(protobuf::protoc PROPERTIES
41+ IMPORTED_LOCATION "${Protobuf_PROTOC_EXECUTABLE}")
42+endif()
43+
44 find_package(gRPC QUIET)
45-if(gRPC_FOUND AND TARGET gRPC::grpc AND TARGET gRPC::grpc_cpp_plugin)
46+if(gRPC_FOUND AND TARGET gRPC::grpc)
47+ # When cross compiling we look for the native grpc_cpp_plugin
48+ if(CMAKE_CROSSCOMPILING)
49+ find_program(GRPC_CPP_PLUGIN REQUIRED NAMES grpc_cpp_plugin)
50+ if(NOT TARGET gRPC::grpc_cpp_plugin)
51+ add_executable(gRPC::grpc_cpp_plugin IMPORTED)
52+ endif()
53+ set_target_properties(gRPC::grpc_cpp_plugin PROPERTIES
54+ IMPORTED_LOCATION "${GRPC_CPP_PLUGIN}")
55+ elseif(TARGET gRPC::grpc_cpp_plugin)
56+ get_target_property(GRPC_CPP_PLUGIN gRPC::grpc_cpp_plugin LOCATION)
57+ else()
58+ message(FATAL_ERROR "Found gRPC but no gRPC CPP plugin defined")
59+ endif()
60+
61 set(GRPC_LIBRARIES gRPC::gpr gRPC::grpc gRPC::grpc++)
62- get_target_property(GRPC_CPP_PLUGIN gRPC::grpc_cpp_plugin LOCATION)
63 get_target_property(GRPC_INCLUDE_DIR gRPC::grpc INTERFACE_INCLUDE_DIRECTORIES)
64 else()
65 include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindGRPC.cmake)
66--
672.39.3 (Apple Git-145)
68
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch
new file mode 100644
index 0000000000..373e146b98
--- /dev/null
+++ b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch
@@ -0,0 +1,27 @@
1From 44f4254fe96c43437400f94a8a2800175ddf3279 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 20 May 2024 21:00:48 -0700
4Subject: [PATCH] include stdint.h for int64_t types
5
6This is exposed when compiling for musl platforms where this
7header is not included indirectly.
8
9Upstream-Status: Submitted [https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3/pull/270]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 src/Value.cpp | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/src/Value.cpp b/src/Value.cpp
16index cbda697..d6f2c9c 100644
17--- a/src/Value.cpp
18+++ b/src/Value.cpp
19@@ -1,4 +1,5 @@
20 #include <iomanip>
21+#include <cstdint>
22
23 #include "etcd/Value.hpp"
24 #include "etcd/v3/KeyValue.hpp"
25--
262.45.1
27