summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
diff options
context:
space:
mode:
authorXu Huan <xuhuan.fnst@fujitsu.com>2022-08-26 10:57:06 +0800
committerKhem Raj <raj.khem@gmail.com>2022-08-27 07:37:45 -0700
commitd98d8dc8a690d463cb3d4517a3aee836cd619b55 (patch)
treefce911b929d450a3b754a6c6d8296227e008b184 /meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
parent81fedc5a67ed8f7156733d21f218d3c51bbb516b (diff)
downloadmeta-openembedded-d98d8dc8a690d463cb3d4517a3aee836cd619b55.tar.gz
python3-grpcio: upgrade 1.47.0 -> 1.48.0
0001-absl-always-use-asm-sgidefs.h.patch removed since it's included in 1.48.0 abseil-ppc-fixes.patch refreshed for new version License-Update: Add the contents of Mozilla Public License to license file. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
deleted file mode 100644
index be516ca508..0000000000
--- a/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 8f21fdfb83b0fa844a9f1f03a86a9ca46642d85e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 9 Apr 2020 13:06:27 -0700
4Subject: [PATCH 1/2] absl: always use <asm/sgidefs.h>
5
6Fixes mips/musl build, since sgidefs.h is not present on all C libraries
7but on linux asm/sgidefs.h is there and contains same definitions, using
8that makes it portable.
9
10Upstream-Status: Pending
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 third_party/abseil-cpp/absl/base/internal/direct_mmap.h | 6 +-----
15 1 file changed, 1 insertion(+), 5 deletions(-)
16
17--- a/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
18+++ b/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
19@@ -41,13 +41,9 @@
20
21 #ifdef __mips__
22 // Include definitions of the ABI currently in use.
23-#ifdef __BIONIC__
24-// Android doesn't have sgidefs.h, but does have asm/sgidefs.h, which has the
25+// bionic/musl C libs don't have sgidefs.h, but do have asm/sgidefs.h, which has the
26 // definitions we need.
27 #include <asm/sgidefs.h>
28-#else
29-#include <sgidefs.h>
30-#endif // __BIONIC__
31 #endif // __mips__
32
33 // SYS_mmap and SYS_munmap are not defined in Android.