summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firefox-mozconfig1
-rw-r--r--firefox.spec3
2 files changed, 2 insertions, 2 deletions
diff --git a/firefox-mozconfig b/firefox-mozconfig
index d8bf8f3..3df0a66 100644
--- a/firefox-mozconfig
+++ b/firefox-mozconfig
@@ -18,6 +18,7 @@ ac_add_options --update-channel=release
ac_add_options --disable-system-sqlite
# Workaround for mozbz#1341234
ac_add_options BINDGEN_CFLAGS="$(pkg-config nspr pixman-1 --cflags)"
+ac_add_options --enable-av1
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
diff --git a/firefox.spec b/firefox.spec
index 9fd574c..3350036 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -201,12 +201,11 @@ BuildRequires: lld
%if 0%{?fedora} > 28
BuildRequires: pipewire-devel
%endif
-
%if !0%{?use_bundled_cbindgen}
BuildRequires: cbindgen
%endif
-
BuildRequires: nodejs
+BuildRequires: nasm >= 1.13
Requires: mozilla-filesystem
Requires: p11-kit-trust
bgstack15