summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-08-16 06:05:04 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-08-16 06:05:04 +0000
commit28d879da88eee809885772a1d789b26a34d75b71 (patch)
treeee25b6267333a3cceb27ff638b67ce8a50f45db2 /package
parent2c57634be3dfb83d76cc63e6fddb486fc725ecb7 (diff)
downloadmaster-31e0f0ae-28d879da88eee809885772a1d789b26a34d75b71.tar.gz
master-31e0f0ae-28d879da88eee809885772a1d789b26a34d75b71.tar.bz2
master-31e0f0ae-28d879da88eee809885772a1d789b26a34d75b71.zip
package/busybox: fix macosx cross compile, closes #7775
SVN-Revision: 22666
Diffstat (limited to 'package')
-rw-r--r--package/busybox/patches/920-macosx-endian.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/busybox/patches/920-macosx-endian.patch b/package/busybox/patches/920-macosx-endian.patch
new file mode 100644
index 0000000000..caf62dae2e
--- /dev/null
+++ b/package/busybox/patches/920-macosx-endian.patch
@@ -0,0 +1,19 @@
+--- a/include/platform.h
++++ b/include/platform.h
+@@ -154,14 +154,14 @@
+ # include <sex.h>
+ # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
+ # define __BYTE_ORDER BYTE_ORDER
+-#elif defined __FreeBSD__
++#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined (__NetBSD__) || defined(__APPLE__)
+ # include <sys/resource.h> /* rlimit */
+ # include <machine/endian.h>
+ # define bswap_64 __bswap64
+ # define bswap_32 __bswap32
+ # define bswap_16 __bswap16
+ # define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
+-#elif !defined __APPLE__
++#else
+ # include <byteswap.h>
+ # include <endian.h>
+ #endif