forked from pool/MozillaFirefox
2ea3069057
* MFSA 2016-01/CVE-2016-1930/CVE-2016-1931 Miscellaneous memory safety hazards * MFSA 2016-02/CVE-2016-1933 (bmo#1231761) Out of Memory crash when parsing GIF format images * MFSA 2016-03/CVE-2016-1935 (bmo#1220450) Buffer overflow in WebGL after out of memory allocation * MFSA 2016-04/CVE-2015-7208/CVE-2016-1939 (bmo#1191423, bmo#1233784) Firefox allows for control characters to be set in cookie names * MFSA 2016-06/CVE-2016-1937 (bmo#724353) Missing delay following user click events in protocol handler dialog * MFSA 2016-07/CVE-2016-1938 (bmo#1190248) Errors in mp_div and mp_exptmod cryptographic functions in NSS (fixed by requiring NSS 3.21) * MFSA 2016-09/CVE-2016-1942/CVE-2016-1943 (bmo#1189082, bmo#1228590) Addressbar spoofing attacks * MFSA 2016-10/CVE-2016-1944/CVE-2016-1945/CVE-2016-1946 (bmo#1186621, bmo#1214782, bmo#1232096) Unsafe memory manipulation found through code inspection * MFSA 2016-11/CVE-2016-1947 (bmo#1237103) Application Reputation service disabled in Firefox 43 * requires NSPR 4.11 * requires NSS 3.21 - prepare mozilla-kde.patch for Gtk3 builds - rebased patches OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=480
74 lines
2.9 KiB
Diff
74 lines
2.9 KiB
Diff
# HG changeset patch
|
|
# Parent e0751ad74e835e80041a61ea00c2a63bf6fbe2de
|
|
# Parent e10e9bf6ab3a74655998bd0286d248f5d17a601a
|
|
|
|
diff --git a/browser/app/Makefile.in b/browser/app/Makefile.in
|
|
--- a/browser/app/Makefile.in
|
|
+++ b/browser/app/Makefile.in
|
|
@@ -55,16 +55,21 @@ GARBAGE += $(addprefix $(FINAL_TARGET)/d
|
|
endif
|
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
libs::
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/mozicon128.png $(FINAL_TARGET)/icons
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(FINAL_TARGET)/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(FINAL_TARGET)/chrome/icons/default
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ifdef MOZ_OFFICIAL_BRANDING
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default22.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default24.png $(FINAL_TARGET)/chrome/icons/default
|
|
+ $(INSTALL) $(IFLAGS1) $(DIST)/branding/default256.png $(FINAL_TARGET)/chrome/icons/default
|
|
+endif
|
|
endif
|
|
|
|
# channel-prefs.js is handled separate from other prefs due to bug 756325
|
|
libs:: $(srcdir)/profile/channel-prefs.js
|
|
$(NSINSTALL) -D $(DIST)/bin/defaults/pref
|
|
$(call py_action,preprocessor,-Fsubstitution $(PREF_PPFLAGS) $(ACDEFINES) $^ -o $(DIST)/bin/defaults/pref/channel-prefs.js)
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
diff --git a/browser/branding/branding-common.mozbuild b/browser/branding/branding-common.mozbuild
|
|
--- a/browser/branding/branding-common.mozbuild
|
|
+++ b/browser/branding/branding-common.mozbuild
|
|
@@ -32,12 +32,15 @@ elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'co
|
|
'disk.icns',
|
|
'document.icns',
|
|
'dsstore',
|
|
'firefox.icns',
|
|
]
|
|
elif CONFIG['MOZ_WIDGET_GTK']:
|
|
BRANDING_FILES += [
|
|
'default16.png',
|
|
+ 'default22.png',
|
|
+ 'default24.png',
|
|
+ 'default256.png',
|
|
'default32.png',
|
|
'default48.png',
|
|
'mozicon128.png',
|
|
]
|
|
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
|
|
--- a/browser/installer/package-manifest.in
|
|
+++ b/browser/installer/package-manifest.in
|
|
@@ -670,18 +670,21 @@
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/icon.png
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf
|
|
@RESPATH@/chrome/toolkit@JAREXT@
|
|
@RESPATH@/chrome/toolkit.manifest
|
|
@RESPATH@/chrome/recording.manifest
|
|
@RESPATH@/chrome/recording/*
|
|
#ifdef MOZ_GTK
|
|
@RESPATH@/browser/chrome/icons/default/default16.png
|
|
+@RESPATH@/browser/chrome/icons/default/default22.png
|
|
+@RESPATH@/browser/chrome/icons/default/default24.png
|
|
@RESPATH@/browser/chrome/icons/default/default32.png
|
|
@RESPATH@/browser/chrome/icons/default/default48.png
|
|
+@RESPATH@/browser/chrome/icons/default/default256.png
|
|
#endif
|
|
|
|
; [Webide Files]
|
|
@RESPATH@/browser/chrome/webide@JAREXT@
|
|
@RESPATH@/browser/chrome/webide.manifest
|
|
@RESPATH@/browser/@PREF_DIR@/webide-prefs.js
|
|
|
|
; DevTools
|