mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-09-20 13:40:24 +02:00
2b34aeea5d
Signed-off-by: Leah Rowe <leah@libreboot.org>
106 lines
3.7 KiB
Diff
106 lines
3.7 KiB
Diff
From d776f452b45b6f61622fa57fae899ba51054e6b8 Mon Sep 17 00:00:00 2001
|
|
From: LibreWolf Developers <noreply@librewolf.net>
|
|
Date: Sun, 6 Sep 2026 10:11:10 +0100
|
|
Subject: [PATCH 30/52] remove-pingsender.patch
|
|
|
|
---
|
|
browser/app/macbuild/Contents/MacOS-files.in | 1 -
|
|
browser/installer/package-manifest.in | 4 ----
|
|
browser/installer/windows/nsis/shared.nsh | 1 -
|
|
python/mozbuild/mozbuild/artifacts.py | 2 --
|
|
toolkit/components/telemetry/app/TelemetrySend.sys.mjs | 3 +++
|
|
toolkit/components/telemetry/moz.build | 4 ----
|
|
6 files changed, 3 insertions(+), 12 deletions(-)
|
|
|
|
diff --git a/browser/app/macbuild/Contents/MacOS-files.in b/browser/app/macbuild/Contents/MacOS-files.in
|
|
index 2f420f773610..3551c6613d18 100644
|
|
--- a/browser/app/macbuild/Contents/MacOS-files.in
|
|
+++ b/browser/app/macbuild/Contents/MacOS-files.in
|
|
@@ -17,7 +17,6 @@
|
|
/crashhelper
|
|
#endif
|
|
/nmhproxy
|
|
-/pingsender
|
|
/pk12util
|
|
/ssltunnel
|
|
/xpcshell
|
|
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
|
|
index 9944fbec4022..605af7a29185 100644
|
|
--- a/browser/installer/package-manifest.in
|
|
+++ b/browser/installer/package-manifest.in
|
|
@@ -408,10 +408,6 @@ bin/libfreebl_64int_3.so
|
|
@BINPATH@/crashhelper@BIN_SUFFIX@
|
|
#endif
|
|
|
|
-; [ Ping Sender ]
|
|
-;
|
|
-@BINPATH@/pingsender@BIN_SUFFIX@
|
|
-
|
|
; [ Native Messaging Host Proxy ]
|
|
;
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
|
diff --git a/browser/installer/windows/nsis/shared.nsh b/browser/installer/windows/nsis/shared.nsh
|
|
index b81c7ef59be0..4155c5264318 100755
|
|
--- a/browser/installer/windows/nsis/shared.nsh
|
|
+++ b/browser/installer/windows/nsis/shared.nsh
|
|
@@ -1411,7 +1411,6 @@ FunctionEnd
|
|
Push "crashreporter.exe"
|
|
Push "default-browser-agent.exe"
|
|
Push "nmhproxy.exe"
|
|
- Push "pingsender.exe"
|
|
Push "updater.exe"
|
|
Push "mozwer.dll"
|
|
Push "${FileMainEXE}"
|
|
diff --git a/python/mozbuild/mozbuild/artifacts.py b/python/mozbuild/mozbuild/artifacts.py
|
|
index 548b7786ee85..6b055486e029 100644
|
|
--- a/python/mozbuild/mozbuild/artifacts.py
|
|
+++ b/python/mozbuild/mozbuild/artifacts.py
|
|
@@ -677,7 +677,6 @@ class LinuxArtifactJob(ArtifactJob):
|
|
"{product}/dependentlibs.list",
|
|
"{product}/{product}",
|
|
"{product}/{product}-bin",
|
|
- "{product}/pingsender",
|
|
"{product}/plugin-container",
|
|
"{product}/updater",
|
|
"{product}/gfxtest",
|
|
@@ -773,7 +772,6 @@ class MacArtifactJob(ArtifactJob):
|
|
"{product}-bin",
|
|
"*.dylib",
|
|
"nmhproxy",
|
|
- "pingsender",
|
|
"plugin-container.app/Contents/MacOS/plugin-container",
|
|
"updater.app/Contents/MacOS/org.mozilla.updater",
|
|
# 'xpcshell',
|
|
diff --git a/toolkit/components/telemetry/app/TelemetrySend.sys.mjs b/toolkit/components/telemetry/app/TelemetrySend.sys.mjs
|
|
index 2ebae13763c5..496880e402f2 100644
|
|
--- a/toolkit/components/telemetry/app/TelemetrySend.sys.mjs
|
|
+++ b/toolkit/components/telemetry/app/TelemetrySend.sys.mjs
|
|
@@ -1677,6 +1677,9 @@ export var TelemetrySendImpl = {
|
|
},
|
|
|
|
runPingSender(pings, observer) {
|
|
+ throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
|
|
+
|
|
+ /* eslint-disable-next-line no-unreachable */
|
|
if (AppConstants.platform === "android") {
|
|
throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
|
|
}
|
|
diff --git a/toolkit/components/telemetry/moz.build b/toolkit/components/telemetry/moz.build
|
|
index 91ae53839b69..de9f21c2b2b0 100644
|
|
--- a/toolkit/components/telemetry/moz.build
|
|
+++ b/toolkit/components/telemetry/moz.build
|
|
@@ -6,10 +6,6 @@ include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
-DIRS = [
|
|
- "pingsender",
|
|
-]
|
|
-
|
|
DEFINES["MOZ_APP_VERSION"] = '"%s"' % CONFIG["MOZ_APP_VERSION"]
|
|
|
|
LOCAL_INCLUDES += [
|
|
--
|
|
2.47.3
|
|
|