bswap: Fix build on FreeBSD 10.0
FreeBSD 10.0-RELEASE has bswap16() etc. macros defined in sys/endian.h, which leads to a conflict with our static inline definitions. Force using the system version of the macros. Signed-off-by: Andreas Färber <andreas.faerber@web.de> Tested-by: Ed Maste <emaste@freebsd.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
87d8354de3
commit
de03c3164a
@ -11,6 +11,8 @@
|
|||||||
# include <sys/endian.h>
|
# include <sys/endian.h>
|
||||||
# include <sys/types.h>
|
# include <sys/types.h>
|
||||||
# include <machine/bswap.h>
|
# include <machine/bswap.h>
|
||||||
|
#elif defined(__FreeBSD__)
|
||||||
|
# include <sys/endian.h>
|
||||||
#elif defined(CONFIG_BYTESWAP_H)
|
#elif defined(CONFIG_BYTESWAP_H)
|
||||||
# include <byteswap.h>
|
# include <byteswap.h>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user