From: Alexandros C. Couloumbis Date: Wed, 29 Sep 2010 14:33:35 +0000 (+0000) Subject: package/busybox: fix endianes issue under FreeBSD 8.1 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=0bc3ab230484ec9b96d700a2da4046f259ece201;p=15.05%2Fopenwrt.git package/busybox: fix endianes issue under FreeBSD 8.1 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23152 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 # include #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