summaryrefslogtreecommitdiff
path: root/debian/patches/002-Make-Examples-Buildable-standalone.diff
blob: 180f9b95e56990356639b11921a79661aba3470c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
Author: Adam Cécile (Le_Vert) <gandalf@le-vert.net>
Description: This patch makes the examples build standalone.

--- a/src/examples/formattertest/formattertest.c
+++ b/src/examples/formattertest/formattertest.c
@@ -31,7 +31,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 int
 main(int argc, char *argv[])
--- a/src/examples/formattertest/Makefile
+++ b/src/examples/formattertest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = formattertest${PROG_SUFFIX}
 SRCS = formattertest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/listsort/listsort.c
+++ b/src/examples/listsort/listsort.c
@@ -31,7 +31,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 #ifdef _WIN32
 # define strcasecmp _stricmp
--- a/src/examples/listsort/Makefile
+++ b/src/examples/listsort/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = listsort${PROG_SUFFIX}
 SRCS = listsort.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/randomtest/Makefile
+++ b/src/examples/randomtest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = randomtest${PROG_SUFFIX}
 SRCS = randomtest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/randomtest/randomtest.c
+++ b/src/examples/randomtest/randomtest.c
@@ -31,7 +31,7 @@
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  */
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 int
 main(int argc, char *argv[])
--- a/src/examples/async_resolver/async_resolver.c
+++ b/src/examples/async_resolver/async_resolver.c
@@ -1,6 +1,6 @@
 /* This code is in the public domain. */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 typedef struct
 {
--- a/src/examples/async_resolver/Makefile
+++ b/src/examples/async_resolver/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = async_resolver${PROG_SUFFIX}
 SRCS = async_resolver.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/echoserver/echoserver.c
+++ b/src/examples/echoserver/echoserver.c
@@ -21,7 +21,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 mowgli_eventloop_t *base_eventloop;
 mowgli_eventloop_pollable_t *listener;
--- a/src/examples/echoserver/Makefile
+++ b/src/examples/echoserver/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = echoserver${PROG_SUFFIX}
 SRCS = echoserver.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/helpertest/helpertest.c
+++ b/src/examples/helpertest/helpertest.c
@@ -21,7 +21,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 int helper_count = 0;
 
--- a/src/examples/helpertest/Makefile
+++ b/src/examples/helpertest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = helpertest${PROG_SUFFIX}
 SRCS = helpertest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/libevent-bench/bench.c
+++ b/src/examples/libevent-bench/bench.c
@@ -76,7 +76,7 @@
 		} \
 	} while (0)
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 static int count, writes, fired;
 static mowgli_eventloop_t *base_eventloop;
--- a/src/examples/libevent-bench/Makefile
+++ b/src/examples/libevent-bench/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = bench${PROG_SUFFIX}
 SRCS = bench.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/linetest/linetest.c
+++ b/src/examples/linetest/linetest.c
@@ -22,7 +22,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 mowgli_eventloop_t *base_eventloop;
 char buf[512];
--- a/src/examples/linetest/Makefile
+++ b/src/examples/linetest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = linetest${PROG_SUFFIX}
 SRCS = linetest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/memslice-bench/Makefile
+++ b/src/examples/memslice-bench/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = memslice-bench${PROG_SUFFIX}
 SRCS = memslice-bench.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/memslice-bench/memslice-bench.c
+++ b/src/examples/memslice-bench/memslice-bench.c
@@ -30,7 +30,7 @@
 		} \
 	} while (0)
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 mowgli_allocation_policy_t *memslice;
 mowgli_allocation_policy_t *sysmalloc;
--- a/src/examples/patriciatest2/Makefile
+++ b/src/examples/patriciatest2/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = patriciatest2${PROG_SUFFIX}
 SRCS = patriciatest2.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/patriciatest2/patriciatest2.c
+++ b/src/examples/patriciatest2/patriciatest2.c
@@ -31,7 +31,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 #define TESTSIZE 10000
 
--- a/src/examples/patriciatest/Makefile
+++ b/src/examples/patriciatest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = patriciatest${PROG_SUFFIX}
 SRCS = patriciatest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/patriciatest/patriciatest.c
+++ b/src/examples/patriciatest/patriciatest.c
@@ -31,7 +31,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 int errors = 0;
 
--- a/src/examples/timertest/Makefile
+++ b/src/examples/timertest/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = timertest${PROG_SUFFIX}
 SRCS = timertest.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/timertest/timertest.c
+++ b/src/examples/timertest/timertest.c
@@ -21,7 +21,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 mowgli_eventloop_t *eventloop;
 
--- a/src/examples/vio-udplistener/Makefile
+++ b/src/examples/vio-udplistener/Makefile
@@ -1,7 +1,7 @@
 PROG_NOINST = vio-udplistener${PROG_SUFFIX}
 SRCS = vio-udplistener.c
 
-include ../../../buildsys.mk
+include ../buildsys.mk
 
 CPPFLAGS += -I../../libmowgli
 LIBS += -L../../libmowgli -lmowgli-2
--- a/src/examples/vio-udplistener/vio-udplistener.c
+++ b/src/examples/vio-udplistener/vio-udplistener.c
@@ -3,7 +3,7 @@
  * This example is public domain.
  */
 
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 #define BUFSIZE 2048
 
--- a/src/examples/Makefile
+++ b/src/examples/Makefile
@@ -1,2 +1,2 @@
 SUBDIRS = echoserver vio-udplistener async_resolver formattertest helpertest jsontest libevent-bench linetest listsort memslice-bench patriciatest patriciatest2 randomtest timertest
-include ../../buildsys.mk
+include buildsys.mk
--- a/src/examples/jsontest/jsontest.c
+++ b/src/examples/jsontest/jsontest.c
@@ -1,4 +1,4 @@
-#include <mowgli.h>
+#include <libmowgli-2/mowgli.h>
 
 void
 out_string(mowgli_json_output_t *out, const char *str, size_t len)