1 From e0803c0bdbb1abf06b6b5bb1b52fdb733505b8f7 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 25 Jan 2017 22:41:02 +1300
4 Subject: [PATCH] src/regex.c: support old compilers for the endian
7 libselinux 2.6 has added some code in regex.c that uses __BYTE_ORDER__
8 to determine the system endianness. Unfortunately, this definition
9 provided directly by the compiler doesn't exist in older gcc versions
12 In order to address this, this commit extends the logic to use
13 <endian.h> definitions if __BYTE_ORDER__ is not provided by the
14 compiler. This allows libselinux to build properly with gcc 4.4.
16 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 src/regex.c | 13 ++++++++++++-
19 1 file changed, 12 insertions(+), 1 deletion(-)
21 diff --git a/src/regex.c b/src/regex.c
22 index a3b427b..0c5ad27 100644
28 #ifndef __BYTE_ORDER__
29 -#error __BYTE_ORDER__ not defined. Unable to determine endianness.
31 +/* If the compiler doesn't define __BYTE_ORDER__, try to use the C
32 + * library <endian.h> header definitions. */
35 +#error Neither __BYTE_ORDER__ nor __BYTE_ORDER defined. Unable to determine endianness.
38 +#define __ORDER_LITTLE_ENDIAN __LITTLE_ENDIAN
39 +#define __ORDER_BIG_ENDIAN __BIG_ENDIAN
40 +#define __BYTE_ORDER__ __BYTE_ORDER