aboutsummaryrefslogtreecommitdiff
path: root/sysutils/afflib/files/patch-lib_qemu_bswap.h
blob: e7d0b49217ae0462a0d3c0cfca6fff697717a6a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- 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)
 {