diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-03 15:18:58 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-03 15:20:01 +0200 |
commit | 30d0d0c694dc81ea99b750d6b88e19c3c45f57be (patch) | |
tree | 4fe0bbeda63960fb85a6fd46b6d793a975846052 /community/chromium/musl-fixes.patch | |
parent | 48d9ebf65fd57f1c2257c88017886d8777a3826f (diff) | |
download | aports-30d0d0c694dc81ea99b750d6b88e19c3c45f57be.tar.bz2 aports-30d0d0c694dc81ea99b750d6b88e19c3c45f57be.tar.xz |
community/chromium: upgrade to 57.0.2987.133
Diffstat (limited to 'community/chromium/musl-fixes.patch')
-rw-r--r-- | community/chromium/musl-fixes.patch | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/community/chromium/musl-fixes.patch b/community/chromium/musl-fixes.patch index 4282a17f33..4f6c0ee957 100644 --- a/community/chromium/musl-fixes.patch +++ b/community/chromium/musl-fixes.patch @@ -126,26 +126,6 @@ #endif #if HAVE_UNISTD_H #include <unistd.h> ---- ./third_party/WebKit/Source/platform/heap/StackFrameDepth.cpp.orig -+++ ./third_party/WebKit/Source/platform/heap/StackFrameDepth.cpp -@@ -68,7 +68,7 @@ - // FIXME: On Mac OSX and Linux, this method cannot estimate stack size - // correctly for the main thread. - --#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD) -+#if OS(LINUX) || OS(ANDROID) || OS(FREEBSD) - // pthread_getattr_np() can fail if the thread is not invoked by - // pthread_create() (e.g., the main thread of webkit_unit_tests). - // If so, a conservative size estimate is returned. -@@ -135,7 +135,7 @@ - } - - void* StackFrameDepth::getStackStart() { --#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD) -+#if OS(LINUX) || OS(ANDROID) || OS(FREEBSD) - pthread_attr_t attr; - int error; - #if OS(FREEBSD) --- ./chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc.orig +++ ./chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc @@ -40,7 +40,7 @@ @@ -217,3 +197,23 @@ index a80ea16..55a2abf 100644 #include <arpa/inet.h> #include <stdint.h> #endif +--- ./third_party/WebKit/Source/wtf/StackUtil.cpp.orig ++++ ./third_party/WebKit/Source/wtf/StackUtil.cpp +@@ -28,7 +28,7 @@ + // FIXME: On Mac OSX and Linux, this method cannot estimate stack size + // correctly for the main thread. + +-#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD) ++#if OS(LINUX) || OS(ANDROID) || OS(FREEBSD) + // pthread_getattr_np() can fail if the thread is not invoked by + // pthread_create() (e.g., the main thread of webkit_unit_tests). + // If so, a conservative size estimate is returned. +@@ -95,7 +95,7 @@ + } + + void* getStackStart() { +-#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD) ++#if OS(LINUX) || OS(ANDROID) || OS(FREEBSD) + pthread_attr_t attr; + int error; + #if OS(FREEBSD) |