fix mtd-utils compile on freebsd
SVN-Revision: 5020
This commit is contained in:
parent
ca61154ca0
commit
7283cec9a6
2 changed files with 6 additions and 1 deletions
|
@ -9,6 +9,11 @@
|
||||||
#define bswap_16(x) NXSwapShort(x)
|
#define bswap_16(x) NXSwapShort(x)
|
||||||
#define bswap_32(x) NXSwapInt(x)
|
#define bswap_32(x) NXSwapInt(x)
|
||||||
#define bswap_64(x) NXSwapLongLong(x)
|
#define bswap_64(x) NXSwapLongLong(x)
|
||||||
|
#elif defined(__FreeBSD__)
|
||||||
|
#include <sys/endian.h>
|
||||||
|
#define bswap_16(x) bswap16(x)
|
||||||
|
#define bswap_32(x) bswap32(x)
|
||||||
|
#define bswap_64(x) bswap64(x)
|
||||||
#else
|
#else
|
||||||
#include <machine/endian.h>
|
#include <machine/endian.h>
|
||||||
#define bswap_16(x) swap16(x)
|
#define bswap_16(x) swap16(x)
|
||||||
|
|
|
@ -20,7 +20,7 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
CFLAGS := $(HOSTCFLAGS) -O2 -I../include
|
CFLAGS := $(HOSTCFLAGS) -O2 -I../include
|
||||||
ifneq ($(OS),Linux)
|
ifneq ($(OS),Linux)
|
||||||
CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -I$(STAGING_DIR)/include-host -include getline.h
|
CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -I$(STAGING_DIR)/include-host -include getline.h -include endian.h
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
|
|
Loading…
Reference in a new issue