diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-12-28 09:50:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-12-28 11:27:30 +0000 |
commit | a347a358bcff5bd7943e76d001c8f3d4b1a4524b (patch) | |
tree | 7aeb7929f961d44853667b587b928619a40cc5e4 /community/qt5-qtwebengine/qt-musl-mallinfo.patch | |
parent | 50faa0a5811956ff86e1b9e94a76b3474ad2d91b (diff) | |
download | aports-a347a358bcff5bd7943e76d001c8f3d4b1a4524b.tar.bz2 aports-a347a358bcff5bd7943e76d001c8f3d4b1a4524b.tar.xz |
community/qt5-qtwebengine: build fix
Diffstat (limited to 'community/qt5-qtwebengine/qt-musl-mallinfo.patch')
-rw-r--r-- | community/qt5-qtwebengine/qt-musl-mallinfo.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/community/qt5-qtwebengine/qt-musl-mallinfo.patch b/community/qt5-qtwebengine/qt-musl-mallinfo.patch index 67ce2cb3f7..7b30717136 100644 --- a/community/qt5-qtwebengine/qt-musl-mallinfo.patch +++ b/community/qt5-qtwebengine/qt-musl-mallinfo.patch @@ -29,14 +29,3 @@ struct mallinfo minfo = mallinfo(); #if defined(USE_TCMALLOC) return minfo.uordblks; ---- qtwebengine/src/3rdparty/chromium/content/child/content_child_helpers.cc 2017-11-28 14:06:53.000000000 +0100 -+++ qtwebengine/src/3rdparty/chromium/content/child/content_child_helpers.cc 2018-01-28 06:23:14.891238507 +0100 -@@ -25,7 +25,7 @@ - // though, this provides only a partial and misleading value. - // Unfortunately some telemetry benchmark rely on it and these need to - // be refactored before getting rid of this. See crbug.com/581365 . --#if defined(OS_LINUX) || defined(OS_ANDROID) -+#if defined(__GLIBC__) || defined(OS_ANDROID) - size_t GetMemoryUsageKB() { - struct mallinfo minfo = mallinfo(); - uint64_t mem_usage = |