diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-29 14:33:35 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-29 14:33:35 +0000 |
commit | ad41b53a74a30551454db9f7941ea90f5c4506be (patch) | |
tree | 40e8392ddb11eb18cd91c9b3724f467ba142b16f /package | |
parent | 76e0ff33deb5cef08ca80bb8d3a5005cbbebce55 (diff) | |
download | upstream-ad41b53a74a30551454db9f7941ea90f5c4506be.tar.gz upstream-ad41b53a74a30551454db9f7941ea90f5c4506be.tar.bz2 upstream-ad41b53a74a30551454db9f7941ea90f5c4506be.zip |
package/busybox: fix endianes issue under FreeBSD 8.1
SVN-Revision: 23152
Diffstat (limited to 'package')
-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 |