void-packages/srcpkgs/qt5/patches/qt-musl-pthread_getattr_np.patch
jbu c0506fae37 qt5: update to 5.5.0
+ Remove obsolete patches/qt-musl-rtld_deepbind.patch
+ Remove some obsolete sections from patches/fix-execinfo.patch
+ Add some new sections to above
+ Modify the patches/qt-musl-pthread_getattr_np.patch for changed source files
+ Fix some openssl vs. libressl things with patches/libressl-compat.patch
+ Add some newly required entries to common/shlibs
+ Add makedepends for libinput-devel and libproxy-devel
2015-07-04 10:38:45 +02:00

13 lines
543 B
Diff

The musl libc also has pthread_getattr_np()
--- qtwebengine/src/3rdparty/chromium/third_party/WebKit/Source/platform/heap/ThreadState.cpp 2015-06-29 22:08:50.000000000 +0200
+++ qtwebengine/src/3rdparty/chromium/third_party/WebKit/Source/platform/heap/ThreadState.cpp 2015-07-04 02:39:41.192583302 +0200
@@ -64,7 +64,7 @@
static void* getStackStart()
{
-#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD)
+#if defined(__GLIBC__) || OS(ANDROID) || OS(FREEBSD) || OS(LINUX_MUSL)
pthread_attr_t attr;
int error;
#if OS(FREEBSD)