From: nbd Date: Sat, 14 Oct 2006 23:25:32 +0000 (+0000) Subject: cleanup X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=87e55c1eb910e50978a4768a2ff605bf77ac3e90 cleanup git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5106 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/utils/Makefile b/target/utils/Makefile index f2a92fec3..8412194e0 100644 --- a/target/utils/Makefile +++ b/target/utils/Makefile @@ -27,6 +27,6 @@ $(UTILS_BUILD_DIR): mkdir -p $(UTILS_BUILD_DIR) $(UTILS_BUILD_DIR)/%: src/%.c - $(CC) -O2 -I $(STAGING_DIR)/include-host -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@) + $(CC) -O2 -I $(STAGING_DIR)/include-host -include endian.h -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@) chmod 755 $@ diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index abc9bc93c..787ffa894 100644 --- a/target/utils/src/trx.c +++ b/target/utils/src/trx.c @@ -44,18 +44,6 @@ #include #include #include -#if defined(__APPLE__) -#include -#include -#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 -#include -#endif #if __BYTE_ORDER == __BIG_ENDIAN #define STORE32_LE(X) bswap_32(X)