1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 20:04:17 +03:00
openwrt-xburst/package/busybox/patches/920-macosx-endian.patch
acoul bef3daa7cf package/busybox: fix macosx cross compile, closes #7775
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22666 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-08-16 06:05:04 +00:00

20 lines
601 B
Diff

--- 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