mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
f878dc7278
* Did not get rid of checks using llvm-objdump. So depend either llvm-native from oe-core or clang-native from meta-clang * Unfortunately we still need python3-six(-native) although firefox ships a version in third_party. If somebody more clever than me can solve this, mozjs-78 can be moved out of dynamic-layers * Get rid of erroneous dependency trying to satisfy llvm_objdump It was tested improperly so configure faile for meta-clang not in layers It is not necessary for building js only - see mozjs-91 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From ccdd47cee610cb33fa5f67f856a68f5e411c79d5 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
|
Date: Sun, 31 Oct 2021 18:32:39 +0100
|
|
Subject: [PATCH] Add SharedArrayRawBufferRefs to public API
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Stolen from [1]
|
|
|
|
[1] https://src.fedoraproject.org/rpms/mozjs78/blob/rawhide/f/FixSharedArray.diff
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
---
|
|
js/public/StructuredClone.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/js/public/StructuredClone.h b/js/public/StructuredClone.h
|
|
index cb3cd5b..06da4dd 100644
|
|
--- a/js/public/StructuredClone.h
|
|
+++ b/js/public/StructuredClone.h
|
|
@@ -381,7 +381,7 @@ enum OwnTransferablePolicy {
|
|
namespace js {
|
|
class SharedArrayRawBuffer;
|
|
|
|
-class SharedArrayRawBufferRefs {
|
|
+class JS_PUBLIC_API SharedArrayRawBufferRefs {
|
|
public:
|
|
SharedArrayRawBufferRefs() = default;
|
|
SharedArrayRawBufferRefs(SharedArrayRawBufferRefs&& other) = default;
|
|
--
|
|
2.31.1
|
|
|