summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-07-23 08:03:03 +0200
committerMartin Stransky <stransky@redhat.com>2019-07-23 08:03:03 +0200
commitc5559a47a2aff16540848879d5a2556a9218ae60 (patch)
treeccc50e010b1a7d36d830ad9653d7131a4c91de59 /firefox.spec
parentUpdated to 68.0.1 (diff)
downloadlibrewolf-fedora-ff-c5559a47a2aff16540848879d5a2556a9218ae60.tar.gz
librewolf-fedora-ff-c5559a47a2aff16540848879d5a2556a9218ae60.tar.bz2
librewolf-fedora-ff-c5559a47a2aff16540848879d5a2556a9218ae60.zip
Enabled WebRTC on ppc64le - rhbz#1732069
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec6
1 files changed, 4 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index e3d1552..4d88262 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -20,7 +20,9 @@ ExcludeArch: s390x
%global disable_elfhack 1
%global build_with_clang 0
%global use_bundled_cbindgen 1
-%ifnarch %{ix86} ppc64 s390 ppc64le
+# Build PGO+LTO on x86_64 and aarch64 only due to build issues
+# on other arches.
+%ifarch x86_64 aarch64
%if %{release_build}
%global build_with_pgo 1
%else
@@ -403,7 +405,7 @@ echo "ac_add_options --disable-debug" >> .mozconfig
echo "ac_add_options --disable-jemalloc" >> .mozconfig
%endif
-%ifnarch %{ix86} x86_64
+%ifnarch %{ix86} x86_64 ppc64le
echo "ac_add_options --disable-webrtc" >> .mozconfig
%endif
bgstack15