aboutsummaryrefslogtreecommitdiffstats
path: root/testing/qt5-qtwebengine/qt-musl-pvalloc.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-09-04 11:11:01 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2018-09-04 11:24:46 +0200
commit3815b72ba156c35b962e15d65a52bb4ded404a58 (patch)
tree3e1595be115eb37e60a1fc57c242e43e7d26f9f3 /testing/qt5-qtwebengine/qt-musl-pvalloc.patch
parentde17d5212836b5874586e9f7cfee4381ee2a8401 (diff)
downloadaports-3815b72ba156c35b962e15d65a52bb4ded404a58.tar.bz2
aports-3815b72ba156c35b962e15d65a52bb4ded404a58.tar.xz
community/qt5-qtwebengine: move from testing
Diffstat (limited to 'testing/qt5-qtwebengine/qt-musl-pvalloc.patch')
-rw-r--r--testing/qt5-qtwebengine/qt-musl-pvalloc.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/qt5-qtwebengine/qt-musl-pvalloc.patch b/testing/qt5-qtwebengine/qt-musl-pvalloc.patch
deleted file mode 100644
index d5caf3836d..0000000000
--- a/testing/qt5-qtwebengine/qt-musl-pvalloc.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- qtwebengine/src/core/api/qtbug-61521.cpp 2017-11-29 09:42:29.000000000 +0100
-+++ qtwebengine/src/core/api/qtbug-61521.cpp 2018-01-28 06:49:29.454175725 +0100
-@@ -111,7 +111,11 @@
- }
-
- SHIM_HIDDEN void* ShimPvalloc(size_t size) {
-+#if defined(__GLIBC__)
- return pvalloc(size);
-+#else
-+ return valloc((size+4095)&~4095);
-+#endif
- }
-
- SHIM_HIDDEN int ShimPosixMemalign(void** r, size_t a, size_t s) {