ports/sysutils/afflib/files/patch-lib_qemu_bswap.h
Antoine Brodin 764ae70066 Update to 3.7.15
PR:		217048
2017-02-13 19:06:09 +00:00

20 lines
365 B
C

--- lib/qemu/bswap.h.orig 2017-02-12 23:23:49 UTC
+++ lib/qemu/bswap.h
@@ -5,6 +5,9 @@
#include <inttypes.h>
+#ifdef __FreeBSD__
+#include <sys/endian.h>
+#else
#ifdef HAVE_BYTESWAP_H
#include <byteswap.h>
#else
@@ -57,6 +60,7 @@ static inline uint64_t bswap64(uint64_t
{
return bswap_64(x);
}
+#endif
static inline void bswap16s(uint16_t *s)
{