mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
webkitgtk3: Fix build on RISCV32
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
59d15aa112
commit
3f08abfc9c
16
meta-oe/recipes-support/webkitgtk/webkitgtk3/sys_futex.patch
Normal file
16
meta-oe/recipes-support/webkitgtk/webkitgtk3/sys_futex.patch
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Fix build on newer 32bit architectures with only 64bit time_t
|
||||
|
||||
Upstream-Status: Submitted [https://chromium-review.googlesource.com/c/angle/angle/+/6108397]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
--- a/Source/ThirdParty/ANGLE/src/common/SimpleMutex.cpp
|
||||
+++ b/Source/ThirdParty/ANGLE/src/common/SimpleMutex.cpp
|
||||
@@ -17,6 +17,9 @@
|
||||
# include <linux/futex.h>
|
||||
# include <sys/syscall.h>
|
||||
# include <unistd.h>
|
||||
+# if !defined(SYS_futex) && defined(SYS_futex_time64)
|
||||
+# define SYS_futex SYS_futex_time64
|
||||
+# endif
|
||||
# endif // defined(ANGLE_PLATFORM_LINUX) || defined(ANGLE_PLATFORM_ANDROID)
|
||||
|
||||
# if defined(ANGLE_PLATFORM_WINDOWS)
|
||||
|
|
@ -17,6 +17,7 @@ SRC_URI = "https://www.webkitgtk.org/releases/webkitgtk-${PV}.tar.xz \
|
|||
file://0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch \
|
||||
file://reproducibility.patch \
|
||||
file://no-musttail-arm.patch \
|
||||
file://sys_futex.patch \
|
||||
file://0001-Cherry-pick-292304-main-7ffc29624258-.-https-bugs.we.patch \
|
||||
file://0001-EnumTraits.h-error-no-matching-function-for-call-to-.patch \
|
||||
file://0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user