From 00373aa7b84dd4bb2710a68bcf7750f48bb2c827 Mon Sep 17 00:00:00 2001 From: "Alexandros C. Couloumbis" Date: Mon, 16 Aug 2010 06:05:04 +0000 Subject: package/busybox: fix macosx cross compile, closes #7775 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22666 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/patches/920-macosx-endian.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 package/busybox/patches/920-macosx-endian.patch (limited to 'package/busybox/patches') 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 + # 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 /* rlimit */ + # include + # define bswap_64 __bswap64 + # define bswap_32 __bswap32 + # define bswap_16 __bswap16 + # define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN) +-#elif !defined __APPLE__ ++#else + # include + # include + #endif -- cgit v1.2.3