diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/0001-Include-missing-cstdint-header.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-grpcio/0001-Include-missing-cstdint-header.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-Include-missing-cstdint-header.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-Include-missing-cstdint-header.patch deleted file mode 100644 index 5cd94dee9c..0000000000 --- a/meta-python/recipes-devtools/python/python3-grpcio/0001-Include-missing-cstdint-header.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From 252aa78526287fe033c5656cd166e551fa5daa88 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 30 Jan 2023 10:31:10 -0800 | ||
4 | Subject: [PATCH] Include missing <cstdint> header | ||
5 | |||
6 | gcc 13 moved some includes around and as a result <cstdint> is | ||
7 | no longer transitively included [1]. Explicitly include it for | ||
8 | int32_t. | ||
9 | |||
10 | [1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes | ||
11 | |||
12 | Upstream-Status: Submitted [https://code-review.googlesource.com/c/re2/+/60970] | ||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | |||
15 | --- | ||
16 | third_party/re2/util/pcre.h | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | diff --git a/third_party/re2/util/pcre.h b/third_party/re2/util/pcre.h | ||
20 | index 896b0bd..271a005 100644 | ||
21 | --- a/third_party/re2/util/pcre.h | ||
22 | +++ b/third_party/re2/util/pcre.h | ||
23 | @@ -163,6 +163,7 @@ | ||
24 | |||
25 | #include "util/util.h" | ||
26 | #include "re2/stringpiece.h" | ||
27 | +#include <cstdint> | ||
28 | |||
29 | #ifdef USEPCRE | ||
30 | #include <pcre.h> | ||