diff options
Diffstat (limited to 'meta-oe/recipes-support/webkitgtk/webkitgtk3/0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch')
-rw-r--r-- | meta-oe/recipes-support/webkitgtk/webkitgtk3/0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/webkitgtk/webkitgtk3/0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch b/meta-oe/recipes-support/webkitgtk/webkitgtk3/0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch new file mode 100644 index 0000000000..40a7133052 --- /dev/null +++ b/meta-oe/recipes-support/webkitgtk/webkitgtk3/0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 984538dcce7b184269efc1e1b0fb78e1cb932b5d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 21 Mar 2025 01:21:22 -0700 | ||
4 | Subject: [PATCH] Fix build errors on RISCV | ||
5 | https://bugs.webkit.org/show_bug.cgi?id=290163 | ||
6 | |||
7 | Reviewed by NOBODY (OOPS!). | ||
8 | |||
9 | Include c++ header <system_error> for std::error_code. | ||
10 | |||
11 | * Source/WebCore/contentextensions/ContentExtensionActions.h: Include system_error | ||
12 | |||
13 | Upstream-Status: Submitted [https://github.com/WebKit/WebKit/pull/42802] | ||
14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
15 | --- | ||
16 | Source/WebCore/contentextensions/ContentExtensionActions.h | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | diff --git a/Source/WebCore/contentextensions/ContentExtensionActions.h b/Source/WebCore/contentextensions/ContentExtensionActions.h | ||
20 | index 0b75d2e1df78..61cb33c94ce8 100644 | ||
21 | --- a/Source/WebCore/contentextensions/ContentExtensionActions.h | ||
22 | +++ b/Source/WebCore/contentextensions/ContentExtensionActions.h | ||
23 | @@ -28,6 +28,7 @@ | ||
24 | #if ENABLE(CONTENT_EXTENSIONS) | ||
25 | |||
26 | #include "ContentExtensionStringSerialization.h" | ||
27 | +#include <system_error> | ||
28 | #include <wtf/JSONValues.h> | ||
29 | #include <wtf/Hasher.h> | ||
30 | |||