summaryrefslogtreecommitdiffstats
path: root/openwrt/toolchain/utils/src
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-06 21:39:12 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-06 21:39:12 +0000
commit35b04af7a8efa1998cac186f9bb4f58de4e643ef (patch)
tree3f0ba2871de8a4d23705a7fe0073d69321f69434 /openwrt/toolchain/utils/src
parent2a84a73093c523cda7890aa8de5f91111ec7ccbd (diff)
add some fixes for compiling on mac os x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@574 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/toolchain/utils/src')
-rw-r--r--openwrt/toolchain/utils/src/sstrip.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/openwrt/toolchain/utils/src/sstrip.c b/openwrt/toolchain/utils/src/sstrip.c
index e820a44b8..60c12c972 100644
--- a/openwrt/toolchain/utils/src/sstrip.c
+++ b/openwrt/toolchain/utils/src/sstrip.c
@@ -59,6 +59,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <elf.h>
+
#ifdef __FreeBSD__
/**
* This seems to work on FreeBSD 5.3, should
@@ -71,10 +72,18 @@
#define bswap_64 __bswap64
#define bswap_32 __bswap32
#define bswap_16 __bswap16
+#elif defined(__APPLE__)
+#include <machine/endian.h>
+#include <machine/byte_order.h>
+#define __BYTE_ORDER BYTE_ORDER
+#define __BIG_ENDIAN BIG_ENDIAN
+#define bswap_16(x) NXSwapShort(x)
+#define bswap_32(x) NXSwapInt(x)
+#define bswap_64(x) NXSwapLongLong(x)
#else
#include <endian.h>
#include <byteswap.h>
-#endif /* defined(__FreeBSD__) */
+#endif
#ifndef TRUE