From 2a86d28e03e0e5ea0fefca312a047a5ba5dc54be Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 14 Oct 2006 22:11:21 +0000 Subject: [PATCH] cleanup SVN-Revision: 5097 --- tools/sstrip/Makefile | 1 + tools/sstrip/src/sstrip.c | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index 4e409e0d8d..87f331214a 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -13,6 +13,7 @@ OS:=$(shell uname) ifeq ($(HOST_OS),Darwin) CFLAGS += -I./include endif +CFLAGS += -I $(TOPDIR)/tools/include -include endian.h define Build/Compile $(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/sstrip src/sstrip.c diff --git a/tools/sstrip/src/sstrip.c b/tools/sstrip/src/sstrip.c index 60c12c972c..6607d12500 100644 --- a/tools/sstrip/src/sstrip.c +++ b/tools/sstrip/src/sstrip.c @@ -60,32 +60,6 @@ #include #include -#ifdef __FreeBSD__ -/** - * This seems to work on FreeBSD 5.3, should - * work on all newer versions as well. I have - * no idea if it will work on versions < 5.3 - * - * Joe Estock (guru) - */ -#include -#define bswap_64 __bswap64 -#define bswap_32 __bswap32 -#define bswap_16 __bswap16 -#elif 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 - - #ifndef TRUE #define TRUE 1 #define FALSE 0 -- 2.30.2