summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Horák <dan@danny.cz>2011-01-06 12:41:29 +0100
committerDan Horák <dan@danny.cz>2011-01-06 12:41:29 +0100
commite09a913b9ae834d07c604a325d2dba31f7ad1204 (patch)
treee7326502dd3b13afcf4f532fcfa0df2adeb32726
parentapplication.ini permission check fix (diff)
downloadlibrewolf-fedora-ff-e09a913b9ae834d07c604a325d2dba31f7ad1204.tar.gz
librewolf-fedora-ff-e09a913b9ae834d07c604a325d2dba31f7ad1204.tar.bz2
librewolf-fedora-ff-e09a913b9ae834d07c604a325d2dba31f7ad1204.zip
- disable ipc on non-x86 arches to match xulrunner
-rw-r--r--firefox.spec20
1 files changed, 17 insertions, 3 deletions
diff --git a/firefox.spec b/firefox.spec
index 2aa0fd1..9e3b0c7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -1,3 +1,10 @@
+# Separated plugins are supported on x86(64) only
+%ifarch i386 i686 x86_64
+%define separated_plugins 1
+%else
+%define separated_plugins 0
+%endif
+
%define homepage http://start.fedoraproject.org/
%define default_bookmarks_file %{_datadir}/bookmarks/default-bookmarks.html
%define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
@@ -26,7 +33,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 4.0
-Release: 0.10%{?prever}%{?dist}
+Release: 0.11%{?prever}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -127,6 +134,10 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{internal_version}/' %{P:%%PATCH0} \
echo "ac_add_options --with-libxul-sdk=\
`pkg-config --variable=sdkdir libxul`" >> .mozconfig
+%if !%{?separated_plugins}
+echo "ac_add_options --disable-ipc" >> .mozconfig
+%endif
+
#---------------------------------------------------------------------
%build
@@ -386,10 +397,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Tue Jan 6 2011 Martin Stransky <stransky@redhat.com> - 4.0-0.10b8
+* Thu Jan 6 2011 Dan Horák <dan[at]danny.cz> - 4.0-0.11b8
+- disable ipc on non-x86 arches to match xulrunner
+
+* Thu Jan 6 2011 Martin Stransky <stransky@redhat.com> - 4.0-0.10b8
- application.ini permission check fix
-* Tue Jan 6 2011 Martin Stransky <stransky@redhat.com> - 4.0-0.9b8
+* Thu Jan 6 2011 Martin Stransky <stransky@redhat.com> - 4.0-0.9b8
- Fixed rhbz#667477 - broken launch script
* Tue Jan 4 2011 Martin Stransky <stransky@redhat.com> - 4.0-0.8b8
bgstack15