diff options
author | Peter Bergin <peter.bergin@windriver.com> | 2023-05-23 14:12:30 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-23 15:04:38 -0700 |
commit | df6d91cfc4fd9e57a4fe1156f4d5830c600b13b2 (patch) | |
tree | 82bc8f0e948ac06a775881e71f4ff288e2092ddd /meta-oe/recipes-extended/redis-plus-plus/files | |
parent | 48297a8f75b9d7b507ab90058dd5de286722bce6 (diff) | |
download | meta-openembedded-df6d91cfc4fd9e57a4fe1156f4d5830c600b13b2.tar.gz |
redis-plus-plus: uprev to 1.3.8
Removed patch now applied upstream.
Signed-off-by: Peter Bergin <peter.bergin@windriver.com>
Signed-off-by: Peter Bergin <peter@berginkonsult.se>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/redis-plus-plus/files')
-rw-r--r-- | meta-oe/recipes-extended/redis-plus-plus/files/0001-include-cstdint.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta-oe/recipes-extended/redis-plus-plus/files/0001-include-cstdint.patch b/meta-oe/recipes-extended/redis-plus-plus/files/0001-include-cstdint.patch deleted file mode 100644 index bfe2412b5d..0000000000 --- a/meta-oe/recipes-extended/redis-plus-plus/files/0001-include-cstdint.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From e74bb5a7ef87e697571181280e6108b89104c02d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 25 Jan 2023 20:40:56 -0800 | ||
4 | Subject: [PATCH] include <cstdint> | ||
5 | |||
6 | gcc 13 libstdc++ moved some includes around and as a result <cstdint> | ||
7 | is no longer transitively included [1]. Explicitly include it for uintXX_t. | ||
8 | |||
9 | Fixes | ||
10 | |||
11 | ../git/src/sw/redis++/utils.h:187:1: error: 'uint16_t' does not name a type | ||
12 | 187 | uint16_t crc16(const char *buf, int len); | ||
13 | | ^~~~~~~~ | ||
14 | |||
15 | [1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes | ||
16 | |||
17 | Upstream-Status: Submitted [https://github.com/sewenew/redis-plus-plus/pull/449] | ||
18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
19 | --- | ||
20 | src/sw/redis++/utils.h | 1 + | ||
21 | 1 file changed, 1 insertion(+) | ||
22 | |||
23 | diff --git a/src/sw/redis++/utils.h b/src/sw/redis++/utils.h | ||
24 | index f77f796..ff38f2d 100644 | ||
25 | --- a/src/sw/redis++/utils.h | ||
26 | +++ b/src/sw/redis++/utils.h | ||
27 | @@ -17,6 +17,7 @@ | ||
28 | #ifndef SEWENEW_REDISPLUSPLUS_UTILS_H | ||
29 | #define SEWENEW_REDISPLUSPLUS_UTILS_H | ||
30 | |||
31 | +#include <cstdint> | ||
32 | #include <cstring> | ||
33 | #include <string> | ||
34 | #include <type_traits> | ||
35 | -- | ||
36 | 2.39.1 | ||
37 | |||