diff options
author | Martin Stransky <stransky@redhat.com> | 2019-03-12 12:32:07 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2019-03-12 12:32:07 +0100 |
commit | 83e8010a4fd29f2c59a56f8add09412ba27ebb09 (patch) | |
tree | 0878a3c0e59becfc92a1d86ddb3664447c5343cc /mozilla-1522780.patch | |
parent | Disabled s390x builds due to https://pagure.io/fedora-infrastructure/issue/7581 (diff) | |
download | librewolf-fedora-ff-83e8010a4fd29f2c59a56f8add09412ba27ebb09.tar.gz librewolf-fedora-ff-83e8010a4fd29f2c59a56f8add09412ba27ebb09.tar.bz2 librewolf-fedora-ff-83e8010a4fd29f2c59a56f8add09412ba27ebb09.zip |
Updated to 66.0
Diffstat (limited to 'mozilla-1522780.patch')
-rw-r--r-- | mozilla-1522780.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/mozilla-1522780.patch b/mozilla-1522780.patch deleted file mode 100644 index 809a598..0000000 --- a/mozilla-1522780.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -up firefox-65.0/toolkit/xre/nsAppRunner.cpp.1522780 firefox-65.0/toolkit/xre/nsAppRunner.cpp ---- firefox-65.0/toolkit/xre/nsAppRunner.cpp.1522780 2019-02-04 14:27:16.704591496 +0100 -+++ firefox-65.0/toolkit/xre/nsAppRunner.cpp 2019-02-04 14:30:01.869913509 +0100 -@@ -3839,12 +3839,14 @@ int XREMain::XRE_mainStartup(bool* aExit - - bool disableWayland = true; - #if defined(MOZ_WAYLAND) -- // Make X11 backend the default one. -- // Enable Wayland backend only when GDK_BACKEND is set and -- // Gtk+ >= 3.22 where we can expect recent enough -- // compositor & libwayland interface. -- disableWayland = (PR_GetEnv("GDK_BACKEND") == nullptr) || -- (gtk_check_version(3, 22, 0) != nullptr); -+ // Enable Wayland on Gtk+ >= 3.22 where we can expect recent enough -+ disableWayland = (gtk_check_version(3, 22, 0) != nullptr); -+ if (!disableWayland) { -+ // Make X11 backend the default one unless MOZ_ENABLE_WAYLAND or -+ // GDK_BACKEND are specified. -+ disableWayland = (PR_GetEnv("GDK_BACKEND") == nullptr) && -+ (PR_GetEnv("MOZ_ENABLE_WAYLAND") == nullptr); -+ } - #endif - // On Wayland disabled builds read X11 DISPLAY env exclusively - // and don't care about different displays. |