aboutsummaryrefslogtreecommitdiff
path: root/misc/dahdi-kmod/files/patch-freebsd-include-dahdi-compat-bsd.h
blob: 0f95e44442175fd659777edcce7c8f873f71c8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- freebsd/include/dahdi/compat/bsd.h.orig	2010-10-05 23:41:23.000000000 +0700
+++ freebsd/include/dahdi/compat/bsd.h	2010-10-05 23:42:01.000000000 +0700
@@ -66,9 +66,11 @@
 #define __be32  u_int32_t
 
 #if _BYTE_ORDER == _LITTLE_ENDIAN
+#define __LITTLE_ENDIAN
 #define __LITTLE_ENDIAN_BITFIELD
 #define __constant_htons(x)	((uint16_t) (((uint16_t) (x)) << 8 | ((uint16_t) (x)) >> 8))
 #elif _BYTE_ORDER == _BIG_ENDIAN
+#define __BIG_ENDIAN
 #define __BIG_ENDIAN_BITFIELD
 #define __constant_htons(x)	(x)
 #endif