void-packages/srcpkgs/qt5/patches/qt-musl-sys_errno_h.patch
jbu 4f3ca6861e qt5: unbreak musl
Updated to @xtraeme's suggestions.
Local test against musl-1.1.10 pending.
2015-06-05 12:42:49 +02:00

13 lines
433 B
Diff

Fix a warning issued by musl libc headers
--- qtwebengine/src/3rdparty/chromium/base/file_util_posix.cc 2015-02-17 05:57:34.000000000 +0100
+++ qtwebengine/src/3rdparty/chromium/base/file_util_posix.cc 2015-06-05 12:20:48.831848404 +0200
@@ -12,7 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/errno.h>
+#include <errno.h>
#include <sys/mman.h>
#include <sys/param.h>
#include <sys/stat.h>