diff options
Diffstat (limited to 'recipes-qt/qt5/qtscript/0001-Include-asm-sgidefs.h-on-non-glibc-systems.patch')
| -rw-r--r-- | recipes-qt/qt5/qtscript/0001-Include-asm-sgidefs.h-on-non-glibc-systems.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtscript/0001-Include-asm-sgidefs.h-on-non-glibc-systems.patch b/recipes-qt/qt5/qtscript/0001-Include-asm-sgidefs.h-on-non-glibc-systems.patch new file mode 100644 index 00000000..287983c6 --- /dev/null +++ b/recipes-qt/qt5/qtscript/0001-Include-asm-sgidefs.h-on-non-glibc-systems.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | From e60c7bff6556d9c36952de525a85c479a30f0030 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Thu, 23 Aug 2018 02:58:14 +0000 | ||
| 4 | Subject: [PATCH] Include asm/sgidefs.h on non-glibc systems | ||
| 5 | |||
| 6 | sgidefs.h wrapper is glibc specific and causes build | ||
| 7 | failures on musl | ||
| 8 | |||
| 9 | Fixes | ||
| 10 | Platform.h:380:10: fatal error: sgidefs.h: No such file or directory | ||
| 11 | #include <sgidefs.h> | ||
| 12 | ^~~~~~~~~~~ | ||
| 13 | compilation terminated. | ||
| 14 | |||
| 15 | Upstream-Status: Pending | ||
| 16 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 17 | --- | ||
| 18 | src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | 4 ++++ | ||
| 19 | 1 file changed, 4 insertions(+) | ||
| 20 | |||
| 21 | diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | ||
| 22 | index 96942c7..f828f04 100644 | ||
| 23 | --- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | ||
| 24 | +++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | ||
| 25 | @@ -377,7 +377,11 @@ | ||
| 26 | |||
| 27 | #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_)) | ||
| 28 | #define WTF_CPU_MIPS 1 | ||
| 29 | +#if defined(__GLIBC__) | ||
| 30 | #include <sgidefs.h> | ||
| 31 | +#else | ||
| 32 | +#include <asm/sgidefs.h> | ||
| 33 | +#endif | ||
| 34 | #if defined(__MIPSEB__) | ||
| 35 | #define WTF_CPU_BIG_ENDIAN 1 | ||
| 36 | #endif | ||
