summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2022-06-22 10:34:50 +0200
committerJan Horak <jhorak@redhat.com>2022-06-22 10:34:50 +0200
commitdb7de5356d43d6f7ad3272131548e77eac758b9b (patch)
tree958980d15b062d3e895797453b0ba35f615f9225
parentUse $GETENFORCE_FILE to call getenforce with full path: rhbz#2091219 (diff)
downloadlibrewolf-fedora-ff-db7de5356d43d6f7ad3272131548e77eac758b9b.tar.gz
librewolf-fedora-ff-db7de5356d43d6f7ad3272131548e77eac758b9b.tar.bz2
librewolf-fedora-ff-db7de5356d43d6f7ad3272131548e77eac758b9b.zip
Enable wasm sandboxed libraries
-rw-r--r--firefox-mozconfig1
-rw-r--r--firefox.spec3
2 files changed, 1 insertions, 3 deletions
diff --git a/firefox-mozconfig b/firefox-mozconfig
index ec288fe..ef4e329 100644
--- a/firefox-mozconfig
+++ b/firefox-mozconfig
@@ -16,7 +16,6 @@ ac_add_options --with-system-fdk-aac
ac_add_options --enable-js-shell
ac_add_options --with-unsigned-addon-scopes=app,system
ac_add_options --without-sysroot
-ac_add_options --with-wasm-sandboxed-libraries
ac_add_options --disable-bootstrap
export BUILD_OFFICIAL=1
diff --git a/firefox.spec b/firefox.spec
index 83ad16f..3200521 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -317,9 +317,8 @@ BuildRequires: llvm
BuildRequires: llvm-devel
BuildRequires: clang
BuildRequires: clang-libs
-%if %{build_with_clang}
+# needed for wasm-ld
BuildRequires: lld
-%endif
BuildRequires: pipewire-devel
bgstack15