diff options
author | Markus Koschany <apo@gambaru.de> | 2015-01-20 10:41:51 +0100 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2015-02-11 15:59:58 +1000 |
commit | cfca5f99e62a32b5488d93f771453ef6935c5d4e (patch) | |
tree | 44f3e00e3f23f48648e066b70a8cdd41cdd8a08f /src/cguittfont | |
parent | caf8d2a9d16a313bbc86a27ad0642efc76852e9f (diff) | |
download | minetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.tar.gz minetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.tar.bz2 minetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.zip |
Fix FTBFS on GNU/Hurd platform
Minetest fails to build on GNU/Hurd due to a name clash with OSX/Apple,
both are defining the __MACH__ keyword. This commit fixes the issue.
Diffstat (limited to 'src/cguittfont')
-rw-r--r-- | src/cguittfont/irrUString.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cguittfont/irrUString.h b/src/cguittfont/irrUString.h index c175c792a..eb7abe5a1 100644 --- a/src/cguittfont/irrUString.h +++ b/src/cguittfont/irrUString.h @@ -45,7 +45,7 @@ #define __BYTE_ORDER 0 #define __LITTLE_ENDIAN 0 #define __BIG_ENDIAN 1 -#elif __MACH__ +#elif defined(__MACH__) && defined(__APPLE__) #include <machine/endian.h> #elif defined(__FreeBSD__) #include <sys/endian.h> |