author | alwin <alwin> | 2003-12-21 15:32:18 (UTC) |
---|---|---|
committer | alwin <alwin> | 2003-12-21 15:32:18 (UTC) |
commit | fafcc882ba0d797d5aa8ed7f2f8d5518ba6d2960 (patch) (unidiff) | |
tree | 1e2f6b889302f732e08049a56feae4000df33c29 | |
parent | e886333e0890f4f32b1d441b0bfc0e404d1a3510 (diff) | |
download | opie-fafcc882ba0d797d5aa8ed7f2f8d5518ba6d2960.zip opie-fafcc882ba0d797d5aa8ed7f2f8d5518ba6d2960.tar.gz opie-fafcc882ba0d797d5aa8ed7f2f8d5518ba6d2960.tar.bz2 |
fixes problems with PATH_MAX in armlinux toolchain for zaurus
-rw-r--r-- | noncore/net/mail/libetpanstuff/libetpan-0.32-arm-linux.patch | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/noncore/net/mail/libetpanstuff/libetpan-0.32-arm-linux.patch b/noncore/net/mail/libetpanstuff/libetpan-0.32-arm-linux.patch new file mode 100644 index 0000000..1e51a99 --- a/dev/null +++ b/noncore/net/mail/libetpanstuff/libetpan-0.32-arm-linux.patch | |||
@@ -0,0 +1,123 @@ | |||
1 | diff -ru libetpan-0.32-patched/generic/imapdriver_tools.h libetpan-0.32-patched2/generic/imapdriver_tools.h | ||
2 | --- libetpan-0.32-patched/generic/imapdriver_tools.h2003-12-08 16:36:36.000000000 +0100 | ||
3 | +++ libetpan-0.32-patched2/generic/imapdriver_tools.h2003-12-21 16:18:28.000000000 +0100 | ||
4 | @@ -41,6 +41,7 @@ | ||
5 | #include "mailmime.h" | ||
6 | #include "imapdriver_types.h" | ||
7 | #include "mail_cache_db.h" | ||
8 | +#include <sys/param.h> | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" { | ||
12 | diff -ru libetpan-0.32-patched/generic/imapdriver_types.h libetpan-0.32-patched2/generic/imapdriver_types.h | ||
13 | --- libetpan-0.32-patched/generic/imapdriver_types.h2003-12-15 04:33:57.000000000 +0100 | ||
14 | +++ libetpan-0.32-patched2/generic/imapdriver_types.h2003-12-21 16:18:50.000000000 +0100 | ||
15 | @@ -43,6 +43,7 @@ | ||
16 | #include <libetpan/maildriver_types.h> | ||
17 | #include <libetpan/generic_cache_types.h> | ||
18 | #include <libetpan/mailstorage_types.h> | ||
19 | +#include <sys/param.h> | ||
20 | |||
21 | #ifdef __cplusplus | ||
22 | extern "C" { | ||
23 | diff -ru libetpan-0.32-patched/generic/mailstorage_tools.c libetpan-0.32-patched2/generic/mailstorage_tools.c | ||
24 | --- libetpan-0.32-patched/generic/mailstorage_tools.c2003-12-15 04:33:57.000000000 +0100 | ||
25 | +++ libetpan-0.32-patched2/generic/mailstorage_tools.c2003-12-21 16:10:52.000000000 +0100 | ||
26 | @@ -38,6 +38,7 @@ | ||
27 | #include "libetpan-config.h" | ||
28 | |||
29 | #include <sys/types.h> | ||
30 | +#include <sys/param.h> | ||
31 | #include <netdb.h> | ||
32 | #include <netinet/in.h> | ||
33 | #include <sys/socket.h> | ||
34 | diff -ru libetpan-0.32-patched/generic/mhdriver_types.h libetpan-0.32-patched2/generic/mhdriver_types.h | ||
35 | --- libetpan-0.32-patched/generic/mhdriver_types.h2003-12-15 04:33:57.000000000 +0100 | ||
36 | +++ libetpan-0.32-patched2/generic/mhdriver_types.h2003-12-21 16:17:53.000000000 +0100 | ||
37 | @@ -45,6 +45,8 @@ | ||
38 | #include <libetpan/generic_cache_types.h> | ||
39 | #include <libetpan/mailstorage_types.h> | ||
40 | |||
41 | +#include <sys/param.h> | ||
42 | + | ||
43 | #ifdef __cplusplus | ||
44 | extern "C" { | ||
45 | #endif | ||
46 | diff -ru libetpan-0.32-patched/generic/mime_message_driver.c libetpan-0.32-patched2/generic/mime_message_driver.c | ||
47 | --- libetpan-0.32-patched/generic/mime_message_driver.c2003-12-15 04:33:57.000000000 +0100 | ||
48 | +++ libetpan-0.32-patched2/generic/mime_message_driver.c2003-12-21 16:20:17.000000000 +0100 | ||
49 | @@ -39,6 +39,7 @@ | ||
50 | |||
51 | #include <sys/stat.h> | ||
52 | #include <sys/types.h> | ||
53 | +#include <sys/param.h> | ||
54 | #include <unistd.h> | ||
55 | #include <sys/mman.h> | ||
56 | #include <stdlib.h> | ||
57 | diff -ru libetpan-0.32-patched/generic/nntpdriver_types.h libetpan-0.32-patched2/generic/nntpdriver_types.h | ||
58 | --- libetpan-0.32-patched/generic/nntpdriver_types.h2003-12-15 04:33:57.000000000 +0100 | ||
59 | +++ libetpan-0.32-patched2/generic/nntpdriver_types.h2003-12-21 16:19:43.000000000 +0100 | ||
60 | @@ -44,6 +44,7 @@ | ||
61 | #include <libetpan/clist.h> | ||
62 | #include <libetpan/generic_cache_types.h> | ||
63 | #include <libetpan/mailstorage_types.h> | ||
64 | +#include <sys/param.h> | ||
65 | |||
66 | #ifdef __cplusplus | ||
67 | extern "C" { | ||
68 | diff -ru libetpan-0.32-patched/generic/pop3driver_types.h libetpan-0.32-patched2/generic/pop3driver_types.h | ||
69 | --- libetpan-0.32-patched/generic/pop3driver_types.h2003-12-15 04:33:57.000000000 +0100 | ||
70 | +++ libetpan-0.32-patched2/generic/pop3driver_types.h2003-12-21 16:19:19.000000000 +0100 | ||
71 | @@ -44,6 +44,7 @@ | ||
72 | #include <libetpan/maildriver_types.h> | ||
73 | #include <libetpan/chash.h> | ||
74 | #include <libetpan/mailstorage_types.h> | ||
75 | +#include <sys/param.h> | ||
76 | |||
77 | #ifdef __cplusplus | ||
78 | extern "C" { | ||
79 | diff -ru libetpan-0.32-patched/maildir/maildir_types.h libetpan-0.32-patched2/maildir/maildir_types.h | ||
80 | --- libetpan-0.32-patched/maildir/maildir_types.h2003-12-15 04:33:57.000000000 +0100 | ||
81 | +++ libetpan-0.32-patched2/maildir/maildir_types.h2003-12-21 16:17:03.000000000 +0100 | ||
82 | @@ -38,6 +38,7 @@ | ||
83 | #define MAILDIR_TYPES_H | ||
84 | |||
85 | #include <sys/types.h> | ||
86 | +#include <sys/param.h> | ||
87 | #include <unistd.h> | ||
88 | #include <libetpan/chash.h> | ||
89 | #include <libetpan/carray.h> | ||
90 | diff -ru libetpan-0.32-patched/mbox/mailmbox_types.h libetpan-0.32-patched2/mbox/mailmbox_types.h | ||
91 | --- libetpan-0.32-patched/mbox/mailmbox_types.h2003-12-15 04:33:57.000000000 +0100 | ||
92 | +++ libetpan-0.32-patched2/mbox/mailmbox_types.h2003-12-21 16:14:58.000000000 +0100 | ||
93 | @@ -42,7 +42,7 @@ | ||
94 | #endif | ||
95 | |||
96 | #include <sys/types.h> | ||
97 | - | ||
98 | +#include <sys/param.h> | ||
99 | #include <libetpan/libetpan-config.h> | ||
100 | |||
101 | #include <libetpan/mailimf.h> | ||
102 | diff -ru libetpan-0.32-patched/tools/maillock.c libetpan-0.32-patched2/tools/maillock.c | ||
103 | --- libetpan-0.32-patched/tools/maillock.c2003-12-15 04:33:58.000000000 +0100 | ||
104 | +++ libetpan-0.32-patched2/tools/maillock.c2003-12-21 16:14:19.000000000 +0100 | ||
105 | @@ -39,6 +39,7 @@ | ||
106 | |||
107 | #include <sys/types.h> | ||
108 | #include <sys/stat.h> | ||
109 | +#include <sys/param.h> | ||
110 | #include <fcntl.h> | ||
111 | #include <unistd.h> | ||
112 | #include <stdio.h> | ||
113 | diff -ru libetpan-0.32-patched/tools/mmapstring.c libetpan-0.32-patched2/tools/mmapstring.c | ||
114 | --- libetpan-0.32-patched/tools/mmapstring.c2003-12-15 04:33:58.000000000 +0100 | ||
115 | +++ libetpan-0.32-patched2/tools/mmapstring.c2003-12-21 16:13:32.000000000 +0100 | ||
116 | @@ -40,6 +40,7 @@ | ||
117 | #include <stdlib.h> | ||
118 | #include <unistd.h> | ||
119 | #include <sys/mman.h> | ||
120 | +#include <sys/param.h> | ||
121 | #include <string.h> | ||
122 | #include <pthread.h> | ||
123 | |||