aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/crashpad/fix-lib-name-conflict.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/crashpad/fix-lib-name-conflict.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/crashpad/fix-lib-name-conflict.patch')
-rw-r--r--vcpkg/ports/crashpad/fix-lib-name-conflict.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/vcpkg/ports/crashpad/fix-lib-name-conflict.patch b/vcpkg/ports/crashpad/fix-lib-name-conflict.patch
new file mode 100644
index 0000000..033ff73
--- /dev/null
+++ b/vcpkg/ports/crashpad/fix-lib-name-conflict.patch
@@ -0,0 +1,44 @@
+diff --git a/client/BUILD.gn b/client/BUILD.gn
+index bd150ab..5cbf469 100644
+--- a/client/BUILD.gn
++++ b/client/BUILD.gn
+@@ -15,6 +15,7 @@
+ import("../build/crashpad_buildconfig.gni")
+
+ crashpad_static_library("client") {
++ output_name = "vcpkg_crashpad_client"
+ sources = [
+ "crashpad_client.h",
+ "prune_crash_reports.cc",
+@@ -114,6 +115,7 @@ crashpad_static_library("client") {
+ }
+
+ static_library("common") {
++ output_name = "vcpkg_crashpad_client_common"
+ sources = [
+ "annotation.cc",
+ "annotation.h",
+diff --git a/handler/BUILD.gn b/handler/BUILD.gn
+index a2d6f7f..70a997e 100644
+--- a/handler/BUILD.gn
++++ b/handler/BUILD.gn
+@@ -94,6 +94,7 @@ if (crashpad_is_android) {
+ }
+
+ static_library("common") {
++ output_name = "vcpkg_crashpad_handler_common"
+ sources = [
+ "crash_report_upload_thread.cc",
+ "crash_report_upload_thread.h",
+diff --git a/util/BUILD.gn b/util/BUILD.gn
+index e7ff4a8..9efcb41 100644
+--- a/util/BUILD.gn
++++ b/util/BUILD.gn
+@@ -167,6 +167,7 @@ if (crashpad_is_win) {
+ }
+
+ crashpad_static_library("util") {
++ output_name = "vcpkg_crashpad_util"
+ sources = [
+ "file/delimited_file_reader.cc",
+ "file/delimited_file_reader.h",