summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2017-05-11 10:46:48 +0200
committerMartin Stransky <stransky@redhat.com>2017-05-11 10:46:48 +0200
commit9a1b7cd727fad5b061042223d3e9cc133c785ca9 (patch)
treed3e806d5d42865f04091fe0d331e113f043e9a6d /firefox.spec
parentEnabled Arm builds (diff)
downloadlibrewolf-fedora-ff-9a1b7cd727fad5b061042223d3e9cc133c785ca9.tar.gz
librewolf-fedora-ff-9a1b7cd727fad5b061042223d3e9cc133c785ca9.tar.bz2
librewolf-fedora-ff-9a1b7cd727fad5b061042223d3e9cc133c785ca9.zip
Enabled Rust on Arm builds, spec clean-up
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec17
1 files changed, 5 insertions, 12 deletions
diff --git a/firefox.spec b/firefox.spec
index ca91719..bb8dd81 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -25,11 +25,7 @@ ExcludeArch: ppc64le aarch64 ppc64 s390 s390x
%define system_cairo 0
# Use system libvpx?
-%if 0%{?fedora} > 23
%define system_libvpx 1
-%else
-%define system_libvpx 0
-%endif
# Use system libicu?
%if 0%{?fedora} > 27
@@ -46,11 +42,7 @@ ExcludeArch: ppc64le aarch64 ppc64 s390 s390x
%endif
# Hardened build?
-%if 0%{?fedora} > 20
%define hardened_build 1
-%else
-%define hardened_build 0
-%endif
%define system_jpeg 1
@@ -62,11 +54,9 @@ ExcludeArch: ppc64le aarch64 ppc64 s390 s390x
%define build_with_rust 0
-%if 0%{?fedora} > 23
-%ifarch x86_64
+%ifarch x86_64 armv7hl
%define build_with_rust 1
%endif
-%endif
# Build as a debug package?
@@ -113,7 +103,7 @@ ExcludeArch: ppc64le aarch64 ppc64 s390 s390x
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 53.0.2
-Release: 2%{?pre_tag}%{?dist}
+Release: 3%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -867,6 +857,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Thu May 11 2017 Martin Stransky <stransky@redhat.com> - 53.0.2-3
+- Enabled Rust on Arm builds
+
* Thu May 11 2017 Martin Stransky <stransky@redhat.com> - 53.0.2-2
- Enabled Arm builds
bgstack15