aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-09-29 14:33:35 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-09-29 14:33:35 +0000
commit0bc3ab230484ec9b96d700a2da4046f259ece201 (patch)
tree0863d6ce94de3b7a0f818a7d0c4b0899fd921d70 /package/busybox
parente7f5e132303c22708658ab2041af9dead43bf3a5 (diff)
downloadmaster-187ad058-0bc3ab230484ec9b96d700a2da4046f259ece201.tar.gz
master-187ad058-0bc3ab230484ec9b96d700a2da4046f259ece201.tar.bz2
master-187ad058-0bc3ab230484ec9b96d700a2da4046f259ece201.zip
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')
-rw-r--r--package/busybox/patches/920-macosx-endian.patch16
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