blob: fbdc4e9113cc865a1c46ab5899623591169135c1 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From e0d86318227a23f00cf0f6639a6685bb9f5771a1 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 12 Dec 2017 09:42:19 -0800
4Subject: [PATCH] util.h: endian.h is available on musl on linux
5
6just checking for glibc alone is not enough since
7it excludes musl, therefore check for platform
8being linux as well
9
10Fixes build issues
11
12include/libisns/util.h:114:12: fatal error: sys/endian.h: No such file or directory
13 # include <sys/endian.h>
14 ^~~~~~~~~~~~~~
15
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016Upstream-Status: Submitted
17
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018Signed-off-by: Khem Raj <raj.khem@gmail.com>
19---
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020 include/libisns/util.h | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/include/libisns/util.h b/include/libisns/util.h
24index 9a2bd13..6cc1a1b 100644
25--- a/include/libisns/util.h
26+++ b/include/libisns/util.h
27@@ -100,7 +100,7 @@ enum {
28 * There's no htonll yet
29 */
30 #ifndef htonll
31-# ifdef __GLIBC__
32+# if defined(__GLIBC__) || defined(__linux__)
33 # include <endian.h>
34 # include <byteswap.h>
35 # if __BYTE_ORDER == __BIG_ENDIAN
36--
372.15.1
38