summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2017-08-11 14:42:44 +0200
committerJan Horak <jhorak@redhat.com>2017-08-11 14:42:44 +0200
commitb10bbb3c1f3392ca68617b090c65b4b046227e43 (patch)
tree120a2e0df345a1d919b35c9935d10944d3f25ca7 /firefox.spec
parentMore ppc build fixes (diff)
downloadlibrewolf-fedora-ff-b10bbb3c1f3392ca68617b090c65b4b046227e43.tar.gz
librewolf-fedora-ff-b10bbb3c1f3392ca68617b090c65b4b046227e43.tar.bz2
librewolf-fedora-ff-b10bbb3c1f3392ca68617b090c65b4b046227e43.zip
Do not require nss and nspr which we build against
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec13
1 files changed, 10 insertions, 3 deletions
diff --git a/firefox.spec b/firefox.spec
index dd2b6c2..8874ede 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -65,9 +65,13 @@
%if %{?system_nss}
%global nspr_version 4.10.10
-%global nspr_build_version %(pkg-config --silence-errors --modversion nspr 2>/dev/null || echo 65536)
+# NSS/NSPR quite often ends in build override, so as requirement the version
+# we're building against could bring us some broken dependencies from time to time.
+%global nspr_build_version %{nspr_version}
+#%global nspr_build_version %(pkg-config --silence-errors --modversion nspr 2>/dev/null || echo 65536)
%global nss_version 3.29.3
-%global nss_build_version %(pkg-config --silence-errors --modversion nss 2>/dev/null || echo 65536)
+%global nss_build_version %{nss_version}
+#%global nss_build_version %(pkg-config --silence-errors --modversion nss 2>/dev/null || echo 65536)
%endif
%if %{?system_sqlite}
@@ -93,7 +97,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 55.0
-Release: 5%{?pre_tag}%{?dist}
+Release: 6%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -848,6 +852,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Fri Aug 11 2017 Jan Horak <jhorak@redhat.com> - 55.0-6
+- Do not require nss and nspr which we build package against
+
* Tue Aug 8 2017 Martin Stransky <stransky@redhat.com> - 55.0-5
- Rebuild
bgstack15