323e2cbce2
This patch updates xmail to the latest version available, and includes a quick fix for IPv6 support in CtrlClnt (XMail's control client) commandline utility. Signed-off-by: Luis Dallos <ld@nkvd.ignorelist.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@39497 3c298f89-4303-0410-b956-a3cf2f4a3e73
34 lines
638 B
Diff
34 lines
638 B
Diff
--- /dev/null
|
|
+++ b/SysMachine.h
|
|
@@ -0,0 +1,30 @@
|
|
+#ifndef _MACHDEFS_H
|
|
+#define _MACHDEFS_H
|
|
+
|
|
+
|
|
+#include <endian.h>
|
|
+
|
|
+#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
+#undef MACH_BIG_ENDIAN_WORDS
|
|
+#undef MACH_BIG_ENDIAN_BITFIELD
|
|
+#elif __BYTE_ORDER == __BIG_ENDIAN
|
|
+#define MACH_BIG_ENDIAN_WORDS
|
|
+#define MACH_BIG_ENDIAN_BITFIELD
|
|
+#endif
|
|
+
|
|
+typedef signed char MachInt8;
|
|
+typedef unsigned char MachUInt8;
|
|
+#define MACH_TYPE_8BIT char
|
|
+
|
|
+typedef signed short MachInt16;
|
|
+typedef unsigned short MachUInt16;
|
|
+#define MACH_TYPE_16BIT short
|
|
+
|
|
+typedef signed int MachInt32;
|
|
+typedef unsigned int MachUInt32;
|
|
+#define MACH_TYPE_32BIT int
|
|
+
|
|
+
|
|
+
|
|
+#endif
|
|
+
|