summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-03-22 07:56:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-25 10:29:16 +0000
commitaf1f77a1eb9d1dc3de17c9b0a2b74d76ada40544 (patch)
tree0a4bab52148631b239566741925ed5e47ed826f9 /meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch
parent421289cbcc422d8a45018f69660a1ed3b1018cb3 (diff)
downloadpoky-af1f77a1eb9d1dc3de17c9b0a2b74d76ada40544.tar.gz
pixz: Fix build on big-endian/musl systems
(From OE-Core rev: 364f625480dca41d2902e209e4bfb675b1a93dce) 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-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch')
-rw-r--r--meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch47
1 files changed, 47 insertions, 0 deletions
diff --git a/meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch b/meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch
new file mode 100644
index 0000000000..6b615988db
--- /dev/null
+++ b/meta/recipes-extended/pixz/pixz/0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch
@@ -0,0 +1,47 @@
1From 5f3a535987bae4c3e3d9e9079c7526e399f7aecd Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 22 Mar 2016 07:42:39 +0000
4Subject: [PATCH 2/2] endian: Use macro bswap_64 instead of __bswap_64
5
6byteswap.h defines then as public APIs on all libc
7on linux including musl
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11Upstream-Status: Submitted
12 src/endian.c | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15diff --git a/src/endian.c b/src/endian.c
16index b7724f3..51aea58 100644
17--- a/src/endian.c
18+++ b/src/endian.c
19@@ -15,6 +15,7 @@ void xle64enc(uint8_t *d, uint64_t n) {
20 #include <stdint.h>
21 #ifdef __linux__
22 #include <endian.h>
23+ #include <byteswap.h>
24 #else
25 #include <sys/endian.h>
26 #endif
27@@ -23,7 +24,7 @@ void xle64enc(uint8_t *d, uint64_t n) {
28 # if __BYTE_ORDER == __LITTLE_ENDIAN
29 # define htole64(x) (x)
30 # else
31-# define htole64(x) __bswap_64 (x)
32+# define htole64(x) bswap_64 (x)
33 # endif
34 #endif
35
36@@ -31,7 +32,7 @@ void xle64enc(uint8_t *d, uint64_t n) {
37 # if __BYTE_ORDER == __LITTLE_ENDIAN
38 # define le64toh(x) (x)
39 # else
40-# define le64toh(x) __bswap_64 (x)
41+# define le64toh(x) bswap_64 (x)
42 # endif
43 #endif
44
45--
461.8.3.1
47