[package] ruby: fix path to libiconv
[openwrt/svn-archive/archive.git] / mail / xmail / patches / 030-sysmachine.patch
1 diff -urN xmail-1.25.orig/SysMachine.h xmail-1.25/SysMachine.h
2 --- xmail-1.25.orig/SysMachine.h 1970-01-01 01:00:00.000000000 +0100
3 +++ xmail-1.25/SysMachine.h 2008-07-28 10:16:47.000000000 +0200
4 @@ -0,0 +1,24 @@
5 +#ifndef _MACHDEFS_H
6 +#define _MACHDEFS_H
7 +
8 +
9 +#undef MACH_BIG_ENDIAN_WORDS
10 +
11 +#undef MACH_BIG_ENDIAN_BITFIELD
12 +
13 +typedef signed char MachInt8;
14 +typedef unsigned char MachUInt8;
15 +#define MACH_TYPE_8BIT char
16 +
17 +typedef signed short MachInt16;
18 +typedef unsigned short MachUInt16;
19 +#define MACH_TYPE_16BIT short
20 +
21 +typedef signed int MachInt32;
22 +typedef unsigned int MachUInt32;
23 +#define MACH_TYPE_32BIT int
24 +
25 +
26 +
27 +#endif
28 +