Explorar o código

package/busybox: fix endianes issue under FreeBSD 8.1

SVN-Revision: 23152
Alexandros C. Couloumbis %!s(int64=15) %!d(string=hai) anos
pai
achega
ad41b53a74
Modificáronse 1 ficheiros con 16 adicións e 0 borrados
  1. 16 0
      package/busybox/patches/920-macosx-endian.patch

+ 16 - 0
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