aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/musl-hacks.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-08-08 13:34:16 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2017-09-15 13:37:11 +0000
commitd183e852a762296b473c33e9ce106f52a4359dae (patch)
tree2f92f891d7ff1fc4b4aa0551bd7b28218b30b9d3 /community/chromium/musl-hacks.patch
parent0d4667363c89e53a83538d90acdc612739d061db (diff)
downloadaports-d183e852a762296b473c33e9ce106f52a4359dae.tar.bz2
aports-d183e852a762296b473c33e9ce106f52a4359dae.tar.xz
community/chromium: upgrade to 61.0.3163.79
to fix tab crashes, use patch from https://github.com/lluixhi/musl-extras/issues/10#issuecomment-328272349 use various patches from fedora
Diffstat (limited to 'community/chromium/musl-hacks.patch')
-rw-r--r--community/chromium/musl-hacks.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/community/chromium/musl-hacks.patch b/community/chromium/musl-hacks.patch
index 91706ef2ef..790d173993 100644
--- a/community/chromium/musl-hacks.patch
+++ b/community/chromium/musl-hacks.patch
@@ -1,11 +1,11 @@
--- ./base/debug/stack_trace.cc.orig
+++ ./base/debug/stack_trace.cc
-@@ -33,7 +33,7 @@
+@@ -214,7 +214,7 @@
std::string StackTrace::ToString() const {
std::stringstream stream;
--#if !defined(__UCLIBC__)
-+#if defined(__GLIBC__)
+-#if !defined(__UCLIBC__) && !defined(_AIX)
++#if defined(__GLIBC__) && !defined(_AIX)
OutputToStream(&stream);
#endif
return stream.str();