void-packages/srcpkgs/chromium/files/musl-patches/musl-hacks.patch
Rasmus Thomsen 5444531744 chromium: update to 71.0.3578.80.
[ci skip]
2018-12-09 19:25:15 +01:00

11 lines
439 B
Diff

--- base/debug/stack_trace.cc.orig 2018-12-08 14:11:25.303475116 +0100
+++ base/debug/stack_trace.cc 2018-12-08 18:00:43.874946999 +0100
@@ -229,7 +229,7 @@
}
std::string StackTrace::ToStringWithPrefix(const char* prefix_string) const {
std::stringstream stream;
-#if !defined(__UCLIBC__) && !defined(_AIX)
+#if defined(__GLIBC__) && !defined(_AIX)
OutputToStreamWithPrefix(&stream, prefix_string);
#endif
return stream.str();