Added ffmpeg 4.0 patch - mozilla-1435212-ffmpeg-4.0.patch
This commit is contained in:
parent
90a80b4f42
commit
bada8c275a
@ -1,122 +0,0 @@
|
||||
diff --git a/browser/base/moz.build b/browser/base/moz.build
|
||||
--- a/browser/base/moz.build
|
||||
+++ b/browser/base/moz.build
|
||||
@@ -55,15 +55,15 @@ BROWSER_CHROME_MANIFESTS += [
|
||||
DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
|
||||
DEFINES['MOZ_APP_VERSION_DISPLAY'] = CONFIG['MOZ_APP_VERSION_DISPLAY']
|
||||
|
||||
DEFINES['APP_LICENSE_BLOCK'] = '%s/content/overrides/app-license.html' % SRCDIR
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk3', 'cocoa'):
|
||||
DEFINES['CONTEXT_COPY_IMAGE_CONTENTS'] = 1
|
||||
|
||||
-if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa', 'gtk3'):
|
||||
+if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa'):
|
||||
DEFINES['CAN_DRAW_IN_TITLEBAR'] = 1
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk3'):
|
||||
DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1
|
||||
|
||||
JAR_MANIFESTS += ['jar.mn']
|
||||
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
|
||||
--- a/toolkit/modules/moz.build
|
||||
+++ b/toolkit/modules/moz.build
|
||||
@@ -260,17 +260,17 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'coco
|
||||
|
||||
EXTRA_JS_MODULES.third_party.jsesc += ['third_party/jsesc/jsesc.js']
|
||||
EXTRA_JS_MODULES.sessionstore += [
|
||||
'sessionstore/PrivacyLevel.jsm',
|
||||
'sessionstore/SessionHistory.jsm',
|
||||
'sessionstore/Utils.jsm',
|
||||
]
|
||||
|
||||
-if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa', 'gtk3'):
|
||||
+if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa'):
|
||||
DEFINES['CAN_DRAW_IN_TITLEBAR'] = 1
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk3'):
|
||||
DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk3', 'cocoa'):
|
||||
DEFINES['HAVE_SHELL_SERVICE'] = 1
|
||||
|
||||
diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
|
||||
--- a/widget/gtk/nsWindow.cpp
|
||||
+++ b/widget/gtk/nsWindow.cpp
|
||||
@@ -6852,72 +6852,19 @@ nsWindow::DoDrawTitlebar() const
|
||||
return mIsCSDEnabled && mSizeState == nsSizeMode_Normal;
|
||||
}
|
||||
|
||||
nsWindow::CSDSupportLevel
|
||||
nsWindow::GetCSDSupportLevel() {
|
||||
if (sCSDSupportLevel != CSD_SUPPORT_UNKNOWN) {
|
||||
return sCSDSupportLevel;
|
||||
}
|
||||
-
|
||||
- const char* currentDesktop = getenv("XDG_CURRENT_DESKTOP");
|
||||
- if (currentDesktop) {
|
||||
- if (strstr(currentDesktop, "GNOME") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FULL;
|
||||
- } else if (strstr(currentDesktop, "XFCE") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "X-Cinnamon") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FULL;
|
||||
- } else if (strstr(currentDesktop, "KDE") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "LXDE") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "openbox") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "i3") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_NONE;
|
||||
- } else if (strstr(currentDesktop, "MATE") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "Unity") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strstr(currentDesktop, "Pantheon") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FULL;
|
||||
- } else if (strstr(currentDesktop, "LXQt") != nullptr) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FULL;
|
||||
- } else {
|
||||
-// Release or beta builds are not supposed to be broken
|
||||
-// so disable titlebar rendering on untested/unknown systems.
|
||||
-#if defined(RELEASE_OR_BETA)
|
||||
- sCSDSupportLevel = CSD_SUPPORT_NONE;
|
||||
-#else
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
-#endif
|
||||
- }
|
||||
- } else {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_NONE;
|
||||
- }
|
||||
-
|
||||
- // We don't support CSD_SUPPORT_FULL on Wayland
|
||||
- if (!GDK_IS_X11_DISPLAY(gdk_display_get_default()) &&
|
||||
- sCSDSupportLevel == CSD_SUPPORT_FULL) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- }
|
||||
-
|
||||
- // Allow MOZ_GTK_TITLEBAR_DECORATION to override our heuristics
|
||||
- const char* decorationOverride = getenv("MOZ_GTK_TITLEBAR_DECORATION");
|
||||
- if (decorationOverride) {
|
||||
- if (strcmp(decorationOverride, "none") == 0) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_NONE;
|
||||
- } else if (strcmp(decorationOverride, "client") == 0) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FLAT;
|
||||
- } else if (strcmp(decorationOverride, "system") == 0) {
|
||||
- sCSDSupportLevel = CSD_SUPPORT_FULL;
|
||||
- }
|
||||
- }
|
||||
-
|
||||
+
|
||||
+ // Disabled due to Bug 1440461
|
||||
+ sCSDSupportLevel = CSD_SUPPORT_NONE;
|
||||
return sCSDSupportLevel;
|
||||
}
|
||||
|
||||
int32_t
|
||||
nsWindow::RoundsWidgetCoordinatesTo()
|
||||
{
|
||||
return GdkScaleFactor();
|
||||
}
|
||||
|
@ -142,7 +142,6 @@ Patch224: mozilla-1170092.patch
|
||||
Patch225: mozilla-1005640-accept-lang.patch
|
||||
#ARM run-time patch
|
||||
Patch226: rhbz-1354671.patch
|
||||
Patch230: fedora-enable-csd.patch
|
||||
|
||||
# Upstream patches
|
||||
Patch402: mozilla-1196777.patch
|
||||
@ -152,6 +151,7 @@ Patch410: mozilla-1321521.patch
|
||||
Patch411: mozilla-1321521-2.patch
|
||||
Patch412: mozilla-1337988.patch
|
||||
Patch413: mozilla-1353817.patch
|
||||
Patch414: mozilla-1435212-ffmpeg-4.0.patch
|
||||
|
||||
# Debian patches
|
||||
Patch500: mozilla-440908.patch
|
||||
@ -311,11 +311,11 @@ This package contains results of tests executed during build.
|
||||
%ifarch aarch64
|
||||
%patch226 -p1 -b .1354671
|
||||
%endif
|
||||
#%patch230 -p1 -R -b .fedora-enable-csd.patch
|
||||
|
||||
%patch402 -p1 -b .1196777
|
||||
%patch406 -p1 -b .256180
|
||||
%patch413 -p1 -b .1353817
|
||||
%patch414 -p1 -b .ffmpeg-4.0
|
||||
|
||||
# Patch for big endian platforms only
|
||||
%if 0%{?big_endian}
|
||||
|
13688
mozilla-1435212-ffmpeg-4.0.patch
Normal file
13688
mozilla-1435212-ffmpeg-4.0.patch
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user