diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-09-18 17:27:16 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-21 09:24:24 +0100 |
commit | 950a11c945fce77aebd26576d39d1bc27d1cab94 (patch) | |
tree | be1a34651427891fb01c58d1101f651368520e16 /meta/recipes-support/nspr | |
parent | 49344fb1c73ef1f38ea9040bc8bf4e944738d606 (diff) | |
download | poky-950a11c945fce77aebd26576d39d1bc27d1cab94.tar.gz |
nspr: Fix build with musl/mips
(From OE-Core rev: ecf386d113011c430a2e04dfdac981a265a83b7b)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nspr')
-rw-r--r-- | meta/recipes-support/nspr/nspr/0001-md-Fix-build-with-musl.patch | 31 | ||||
-rw-r--r-- | meta/recipes-support/nspr/nspr_4.16.bb | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-support/nspr/nspr/0001-md-Fix-build-with-musl.patch b/meta/recipes-support/nspr/nspr/0001-md-Fix-build-with-musl.patch new file mode 100644 index 0000000000..f3cd670026 --- /dev/null +++ b/meta/recipes-support/nspr/nspr/0001-md-Fix-build-with-musl.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From 147f3c2acbd96d44025cec11800ded0282327764 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 18 Sep 2017 17:22:43 -0700 | ||
4 | Subject: [PATCH] md: Fix build with musl | ||
5 | |||
6 | The MIPS specific header <sgidefs.h> is not provided by musl | ||
7 | linux kernel headers provide <asm/sgidefs.h> which has same definitions | ||
8 | |||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | --- | ||
11 | Upstream-Status: Pending | ||
12 | |||
13 | pr/include/md/_linux.cfg | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/pr/include/md/_linux.cfg b/pr/include/md/_linux.cfg | ||
17 | index 640b19c..31296a8 100644 | ||
18 | --- a/pr/include/md/_linux.cfg | ||
19 | +++ b/pr/include/md/_linux.cfg | ||
20 | @@ -499,7 +499,7 @@ | ||
21 | #elif defined(__mips__) | ||
22 | |||
23 | /* For _ABI64 */ | ||
24 | -#include <sgidefs.h> | ||
25 | +#include <asm/sgidefs.h> | ||
26 | |||
27 | #ifdef __MIPSEB__ | ||
28 | #define IS_BIG_ENDIAN 1 | ||
29 | -- | ||
30 | 2.14.1 | ||
31 | |||
diff --git a/meta/recipes-support/nspr/nspr_4.16.bb b/meta/recipes-support/nspr/nspr_4.16.bb index a634afbf75..bb178fe712 100644 --- a/meta/recipes-support/nspr/nspr_4.16.bb +++ b/meta/recipes-support/nspr/nspr_4.16.bb | |||
@@ -11,6 +11,7 @@ SRC_URI = "http://ftp.mozilla.org/pub/nspr/releases/v${PV}/src/nspr-${PV}.tar.gz | |||
11 | file://remove-srcdir-from-configure-in.patch \ | 11 | file://remove-srcdir-from-configure-in.patch \ |
12 | file://0002-Add-nios2-support.patch \ | 12 | file://0002-Add-nios2-support.patch \ |
13 | file://0001-include-stdint.h-for-SSIZE_MAX-and-SIZE_MAX-definiti.patch \ | 13 | file://0001-include-stdint.h-for-SSIZE_MAX-and-SIZE_MAX-definiti.patch \ |
14 | file://0001-md-Fix-build-with-musl.patch \ | ||
14 | file://nspr.pc.in \ | 15 | file://nspr.pc.in \ |
15 | " | 16 | " |
16 | 17 | ||