diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-03-10 23:54:38 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-03-10 23:54:45 +0100 |
commit | f69e941936d866a7ddc3ed316fdcd0916eb2908f (patch) | |
tree | fa6eef918e6895e433a3b8496b566668da900c60 /community/chromium/musl-hacks.patch | |
parent | f53dc6e19270cdc7d95e606eb8fb588f09edafee (diff) | |
download | aports-f69e941936d866a7ddc3ed316fdcd0916eb2908f.tar.bz2 aports-f69e941936d866a7ddc3ed316fdcd0916eb2908f.tar.xz |
community/chromium: upgrade to 49.0.2623.87
Diffstat (limited to 'community/chromium/musl-hacks.patch')
-rw-r--r-- | community/chromium/musl-hacks.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/chromium/musl-hacks.patch b/community/chromium/musl-hacks.patch new file mode 100644 index 0000000000..d1f580a81d --- /dev/null +++ b/community/chromium/musl-hacks.patch @@ -0,0 +1,22 @@ +--- ./third_party/usrsctp/usrsctplib/usrsctplib/netinet/sctp_userspace.c.orig ++++ ./third_party/usrsctp/usrsctplib/usrsctplib/netinet/sctp_userspace.c +@@ -72,7 +72,7 @@ + pthread_setname_np(name); + #endif + #if defined(__Userspace_os_Linux) +- pthread_setname_np(pthread_self(), name); ++ //pthread_setname_np(pthread_self(), name); + #endif + #if defined(__Userspace_os_FreeBSD) + pthread_set_name_np(pthread_self(), name); +--- ./base/debug/stack_trace.cc.orig ++++ ./base/debug/stack_trace.cc +@@ -33,7 +33,7 @@ + + std::string StackTrace::ToString() const { + std::stringstream stream; +-#if !defined(__UCLIBC__) ++#if defined(__GLIBC__) + OutputToStream(&stream); + #endif + return stream.str(); |