summarylogtreecommitdiffstats
path: root/mozilla-1516081.patch
diff options
context:
space:
mode:
authorBjörn Bidar2019-09-16 11:42:15 +0200
committerBjörn Bidar2019-09-16 14:15:55 +0200
commit5f36b812497f06a1a67033521bb7de54499d6ad8 (patch)
tree84426ee455abf23cfd3323db6a6f3e5ef1425ad8 /mozilla-1516081.patch
parentbfe81d04510a0567e63cc369e8f17f63653a0e4f (diff)
downloadaur-5f36b812497f06a1a67033521bb7de54499d6ad8.tar.gz
upkg
- new upstream release - update firefox-kde patches from openSUSE - update unity-menubar patch from ubuntu - update system grahpite2, harbuffz and av1 patch for new release - drop patches that fixes MOZILLA#1516081 as its fixed upstream (https://bugzilla.mozilla.org/show_bug.cgi?id=1516081) - drop patches that fixes MOZILLA#1516803 as its fixed upstream (https://bugzilla.mozilla.org/show_bug.cgi?id=1516803)
Diffstat (limited to 'mozilla-1516081.patch')
-rw-r--r--mozilla-1516081.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/mozilla-1516081.patch b/mozilla-1516081.patch
deleted file mode 100644
index 724ccd182af6..000000000000
--- a/mozilla-1516081.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -up firefox-64.0/build/moz.configure/toolchain.configure.1516081 firefox-64.0/build/moz.configure/toolchain.configure
---- firefox-64.0/build/moz.configure/toolchain.configure.1516081 2018-12-07 03:56:20.000000000 +0100
-+++ firefox-64.0/build/moz.configure/toolchain.configure 2019-01-03 15:30:08.207368056 +0100
-@@ -1304,7 +1304,7 @@ def pgo_flags(compiler, build_env, targe
-
- if compiler.type == 'gcc':
- return namespace(
-- gen_cflags=['-fprofile-generate'],
-+ gen_cflags=['-fprofile-generate', '-DMOZ_PROFILE_INSTRUMENTATION'],
- gen_ldflags=['-fprofile-generate'],
- use_cflags=['-fprofile-use', '-fprofile-correction',
- '-Wcoverage-mismatch'],
-@@ -1325,7 +1325,8 @@ def pgo_flags(compiler, build_env, targe
-
- if gen_ldflags:
- return namespace(
-- gen_cflags=['-fprofile-instr-generate'],
-+ gen_cflags=['-fprofile-instr-generate',
-+ '-DMOZ_PROFILE_INSTRUMENTATION'],
- gen_ldflags=gen_ldflags,
- use_cflags=['-fprofile-instr-use=%s' % profdata,
- '-Wno-error=profile-instr-out-of-date',
-diff -up firefox-64.0/toolkit/components/terminator/nsTerminator.cpp.1516081 firefox-64.0/toolkit/components/terminator/nsTerminator.cpp
---- firefox-64.0/toolkit/components/terminator/nsTerminator.cpp.1516081 2019-01-03 15:30:08.207368056 +0100
-+++ firefox-64.0/toolkit/components/terminator/nsTerminator.cpp 2019-01-03 15:31:33.445034029 +0100
-@@ -419,6 +419,12 @@
- }
- }
- #endif
-+ // Disable watchdog for PGO train builds - writting profile information at
-+ // exit may take time and it is better to make build hang rather than
-+ // silently produce poorly performing binary.
-+#ifdef MOZ_PROFILE_INSTRUMENTATION
-+ crashAfterMS = INT32_MAX;
-+#endif
-
- UniquePtr<Options> options(new Options());
- const PRIntervalTime ticksDuration = PR_MillisecondsToInterval(1000);