summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2016-04-27 11:23:04 +0200
committerMartin Stransky <stransky@anakreon.cz>2016-04-27 11:23:04 +0200
commit62a95da7d1c67b402c133ff7e07b843ad2953153 (patch)
treea65105f8e6f64a3c598ff28b834e5761c8ef6e36
parent Fixed missing langpacks (diff)
downloadlibrewolf-fedora-ff-62a95da7d1c67b402c133ff7e07b843ad2953153.tar.gz
librewolf-fedora-ff-62a95da7d1c67b402c133ff7e07b843ad2953153.tar.bz2
librewolf-fedora-ff-62a95da7d1c67b402c133ff7e07b843ad2953153.zip
Added fix for rhbz#1315225 - ppc64le/aarch64 build fixes
-rw-r--r--firefox.spec9
1 files changed, 8 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 7d5b2cf..dffcbb7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -94,7 +94,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 46.0
-Release: 3%{?pre_tag}%{?dist}
+Release: 4%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -347,8 +347,12 @@ echo "ac_add_options --disable-optimize" >> .mozconfig
echo "ac_add_options --enable-dtrace" >> .mozconfig
%else
echo "ac_add_options --disable-debug" >> .mozconfig
+%ifarch ppc64le aarch64
+echo 'ac_add_options --enable-optimize="-g -O2"' >> .mozconfig
+%else
echo "ac_add_options --enable-optimize" >> .mozconfig
%endif
+%endif
# s390(x) fails to start with jemalloc enabled
%ifarch s390 s390x
@@ -807,6 +811,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Wed Apr 27 2016 Martin Stransky <stransky@redhat.com> - 46.0-4
+- Added fix for rhbz#1315225 - ppc64le/aarch64 build fixes
+
* Wed Apr 27 2016 Martin Stransky <stransky@redhat.com> - 46.0-3
- Fixed missing langpacks
bgstack15