diff options
author | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-29 14:33:35 +0000 |
---|---|---|
committer | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-29 14:33:35 +0000 |
commit | 71f447678da56f68be21b2001dc1f9910283ddfd (patch) | |
tree | 0863d6ce94de3b7a0f818a7d0c4b0899fd921d70 /package/busybox/patches/920-macosx-endian.patch | |
parent | 762de7c3f1ce1a0f63a56e4f6f178d961281017a (diff) |
package/busybox: fix endianes issue under FreeBSD 8.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23152 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/920-macosx-endian.patch')
-rw-r--r-- | package/busybox/patches/920-macosx-endian.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/busybox/patches/920-macosx-endian.patch b/package/busybox/patches/920-macosx-endian.patch index caf62dae2e..b895446210 100644 --- a/package/busybox/patches/920-macosx-endian.patch +++ b/package/busybox/patches/920-macosx-endian.patch @@ -17,3 +17,19 @@ # include <byteswap.h> # include <endian.h> #endif +@@ -172,9 +172,15 @@ + #elif defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN + # define BB_BIG_ENDIAN 1 + # define BB_LITTLE_ENDIAN 0 ++#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN ++# define BB_BIG_ENDIAN 1 ++# define BB_LITTLE_ENDIAN 0 + #elif (defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN) || defined(__386__) + # define BB_BIG_ENDIAN 0 + # define BB_LITTLE_ENDIAN 1 ++#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN ++# define BB_BIG_ENDIAN 0 ++# define BB_LITTLE_ENDIAN 1 + #else + # error "Can't determine endianness" + #endif |