aboutsummaryrefslogtreecommitdiff
path: root/devel/electron33/files/patch-base_debug_stack__trace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron33/files/patch-base_debug_stack__trace.cc')
-rw-r--r--devel/electron33/files/patch-base_debug_stack__trace.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/electron33/files/patch-base_debug_stack__trace.cc b/devel/electron33/files/patch-base_debug_stack__trace.cc
deleted file mode 100644
index c6f6b5b5f1b7..000000000000
--- a/devel/electron33/files/patch-base_debug_stack__trace.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- base/debug/stack_trace.cc.orig 2024-10-16 21:30:44 UTC
-+++ base/debug/stack_trace.cc
-@@ -258,7 +258,7 @@ bool StackTrace::WillSymbolizeToStreamForTesting() {
- // Symbols are not expected to be reliable when gn args specifies
- // symbol_level=0.
- return false;
--#elif defined(__UCLIBC__) || defined(_AIX)
-+#elif defined(__UCLIBC__) || defined(_AIX) || BUILDFLAG(IS_BSD)
- // StackTrace::OutputToStream() is not implemented under uclibc, nor AIX.
- // See https://crbug.com/706728
- return false;
-@@ -320,7 +320,7 @@ std::string StackTrace::ToStringWithPrefix(cstring_vie
-
- std::string StackTrace::ToStringWithPrefix(cstring_view prefix_string) const {
- std::stringstream stream;
--#if !defined(__UCLIBC__) && !defined(_AIX)
-+#if !defined(__UCLIBC__) && !defined(_AIX) && !BUILDFLAG(IS_BSD)
- OutputToStreamWithPrefix(&stream, prefix_string);
- #endif
- return stream.str();
-@@ -344,7 +344,7 @@ std::ostream& operator<<(std::ostream& os, const Stack
- }
-
- std::ostream& operator<<(std::ostream& os, const StackTrace& s) {
--#if !defined(__UCLIBC__) && !defined(_AIX)
-+#if !defined(__UCLIBC__) && !defined(_AIX) && !BUILDFLAG(IS_BSD)
- s.OutputToStream(&os);
- #else
- os << "StackTrace::OutputToStream not implemented.";