-
Notifications
You must be signed in to change notification settings - Fork 95
/
configure.ac
455 lines (366 loc) · 9.27 KB
/
configure.ac
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
AC_INIT([enigma2-plugins],[4],[[email protected]])
AM_INIT_AUTOMAKE([dist-bzip2 foreign no-define tar-pax])
# Silent rules are available since 1.11, but older versions
# are still in use. So don't use them unconditionally.
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_SYS_LARGEFILE
AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
AM_PATH_PYTHON
AC_ARG_WITH(debug,
AS_HELP_STRING([--without-debug],[disable debugging code]),
[with_debug="$withval"],[with_debug="yes"])
if test "$with_debug" = "yes"; then
AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code])
fi
AC_ARG_WITH(po,
AS_HELP_STRING([--with-po],[enable updating of po files]),
[with_po="$withval"],[with_po="no"])
if test "$with_po" = "yes"; then
AC_PATH_PROG(MSGINIT, msginit)
AC_PATH_PROG(MSGMERGE, msgmerge)
AC_PATH_PROG(MSGUNIQ, msguniq)
AC_PATH_PROG(MSGATTRIB, msgattrib)
AC_PATH_PROG(XGETTEXT, xgettext)
if test -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$MSGATTRIB" -o -z "$XGETTEXT"; then
AC_MSG_ERROR([Could not find required gettext tools])
fi
fi
AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
AC_CONFIG_FILES([
Makefile
aihdcontroler/Makefile
aihdcontroler/meta/Makefile
aihdcontroler/src/Makefile
aihdcontroler/src/comp/Makefile
aihdcontroler/src/data/Makefile
antiscrollbar/Makefile
antiscrollbar/meta/Makefile
antiscrollbar/src/Makefile
ardmediathek/Makefile
ardmediathek/meta/Makefile
ardmediathek/src/Makefile
ardmediathek/src/img/Makefile
audiosync/Makefile
audiosync/img/Makefile
audiosync/meta/Makefile
audiosync/po/Makefile
audiosync/src/Makefile
automaticcleanup/Makefile
automaticcleanup/meta/Makefile
automaticcleanup/po/Makefile
automaticcleanup/src/Makefile
automaticvolumeadjustment/Makefile
automaticvolumeadjustment/meta/Makefile
automaticvolumeadjustment/src/Makefile
automaticvolumeadjustment/po/Makefile
autoresolution/Makefile
autoresolution/meta/Makefile
autoresolution/src/Makefile
autoresolution/po/Makefile
autotimer/Makefile
autotimer/po/Makefile
autotimer/meta/Makefile
autotimer/src/WebComponents/Makefile
autotimer/src/WebScreens/Makefile
autotimer/src/Makefile
autotimer/src/web-data/Makefile
autotimer/src/WebChilds/Makefile
autotimer/src/web/Makefile
babelzapper/Makefile
babelzapper/etc/Makefile
babelzapper/meta/Makefile
babelzapper/src/Makefile
blindscan/src/Makefile
blindscan/po/Makefile
blindscan/Makefile
blindscan/meta/Makefile
blindscan/src/images/Makefile
bonjour/Makefile
bonjour/meta/Makefile
bonjour/src/Makefile
cdinfo/Makefile
cdinfo/meta/Makefile
cdinfo/src/Makefile
dreamexplorer/Makefile
dreamexplorer/meta/Makefile
dreamexplorer/po/Makefile
dreamexplorer/src/Makefile
dreamexplorer/src/res/Makefile
dreamirc/Makefile
dreamirc/meta/Makefile
dreamirc/src/Makefile
dreamirc/src/protocols/Makefile
dreammediathek/Makefile
dreammediathek/src/Makefile
dvdbackup/Makefile
dvdbackup/src/Makefile
dvdbackup/po/Makefile
dvdbackup/meta/Makefile
dyndns/Makefile
dyndns/src/Makefile
dyndns/meta/Makefile
easyinfo/Makefile
easyinfo/meta/Makefile
easyinfo/src/Makefile
easymedia/Makefile
easymedia/meta/Makefile
easymedia/po/Makefile
easymedia/src/Makefile
eibox/Makefile
eibox/meta/Makefile
eibox/po/Makefile
eibox/src/Makefile
eibox/src/images/Makefile
emailclient/Makefile
emailclient/meta/Makefile
emailclient/po/Makefile
emailclient/src/Makefile
epgrefresh/Makefile
epgrefresh/meta/Makefile
epgrefresh/po/Makefile
epgrefresh/src/Makefile
epgrefresh/src/webinterface/Makefile
epgsearch/Makefile
epgsearch/meta/Makefile
epgsearch/po/Makefile
epgsearch/src/Makefile
epgsearch/src/icons/Makefile
fancontrol2/Makefile
fancontrol2/meta/Makefile
fancontrol2/po/Makefile
fancontrol2/src/Makefile
fancontrol2/src/data/Makefile
filebrowser/Makefile
filebrowser/meta/Makefile
filebrowser/src/Makefile
filebrowser/po/Makefile
fstabeditor/Makefile
fstabeditor/meta/Makefile
fstabeditor/src/Makefile
ftpbrowser/Makefile
ftpbrowser/meta/Makefile
ftpbrowser/po/Makefile
ftpbrowser/src/Makefile
ftpbrowser/src/images/Makefile
growlee/Makefile
growlee/meta/Makefile
growlee/src/Makefile
httpproxy/Makefile
httpproxy/meta/Makefile
httpproxy/src/Makefile
imdb/Makefile
imdb/meta/Makefile
imdb/po/Makefile
imdb/src/Makefile
kiddytimer/Makefile
kiddytimer/img/Makefile
kiddytimer/meta/Makefile
kiddytimer/po/Makefile
kiddytimer/src/Makefile
letterbox/Makefile
letterbox/src/Makefile
letterbox/meta/Makefile
logomanager/Makefile
logomanager/meta/Makefile
logomanager/po/Makefile
logomanager/src/Makefile
mediadownloader/Makefile
mediadownloader/meta/Makefile
mediadownloader/po/Makefile
mediadownloader/src/Makefile
mediathekviewweb/Makefile
mediathekviewweb/meta/Makefile
mediathekviewweb/src/Makefile
mediathekviewweb/src/img/Makefile
merlinepg/Makefile
merlinepg/meta/Makefile
merlinepg/src/Makefile
merlinepgcenter/Makefile
merlinepgcenter/meta/Makefile
merlinepgcenter/src/Makefile
merlinepgcenter/po/Makefile
merlinepgcenter/skins/Makefile
merlinepgcenter/images/Makefile
merlinepgcenter/images/HD/Makefile
merlinepgcenter/images/HD_BORDER/Makefile
merlinepgcenter/images/SD/Makefile
merlinepgcenter/images/XD/Makefile
merlinepgcenter/images/XD_BORDER/Makefile
merlinmusicplayer/Makefile
merlinmusicplayer/meta/Makefile
merlinmusicplayer/po/Makefile
merlinmusicplayer/src/Makefile
merlinmusicplayer/src/images/Makefile
mosaic/Makefile
mosaic/meta/Makefile
mosaic/po/Makefile
mosaic/src/Makefile
movieretitle/Makefile
movieretitle/meta/Makefile
movieretitle/po/Makefile
movieretitle/src/Makefile
movietagger/Makefile
movietagger/etc/Makefile
movietagger/meta/Makefile
movietagger/po/Makefile
movietagger/src/Makefile
mphelp/Makefile
mphelp/meta/Makefile
mphelp/src/Makefile
multirc/Makefile
multirc/src/Makefile
multirc/meta/Makefile
netcaster/Makefile
netcaster/meta/Makefile
netcaster/src/Makefile
netcaster/src/bin/Makefile
netcaster/src/bin/interface/Makefile
netcaster/src/etc/Makefile
netzkino/Makefile
netzkino/meta/Makefile
netzkino/src/Makefile
ncidclient/Makefile
ncidclient/meta/Makefile
ncidclient/po/Makefile
ncidclient/src/Makefile
ofdb/Makefile
ofdb/meta/Makefile
ofdb/po/Makefile
ofdb/src/Makefile
orfat/Makefile
orfat/meta/Makefile
orfat/src/Makefile
orfteletext/Makefile
orfteletext/meta/Makefile
orfteletext/src/Makefile
partnerbox/Makefile
partnerbox/meta/Makefile
partnerbox/po/Makefile
partnerbox/src/Makefile
partnerbox/src/icons/Makefile
permanentclock/Makefile
permanentclock/meta/Makefile
permanentclock/po/Makefile
permanentclock/src/Makefile
permanentclock/src/trad/Makefile
pluginhider/Makefile
pluginhider/meta/Makefile
pluginhider/po/Makefile
pluginhider/src/Makefile
porncenter/Makefile
porncenter/meta/Makefile
porncenter/po/Makefile
porncenter/src/Makefile
porncenter/src/Additions/Makefile
primetimemanager/Makefile
primetimemanager/meta/Makefile
primetimemanager/po/Makefile
primetimemanager/src/Makefile
primetimemanager/src/images/Makefile
reconstructapsc/Makefile
reconstructapsc/meta/Makefile
reconstructapsc/src_py/Makefile
reconstructapsc/po/Makefile
remotetimer/Makefile
remotetimer/meta/Makefile
remotetimer/po/Makefile
remotetimer/src/Makefile
recordinfobar/Makefile
recordinfobar/meta/Makefile
recordinfobar/po/Makefile
recordinfobar/src/Makefile
satipclient/Makefile
satipclient/meta/Makefile
satipclient/po/Makefile
satipclient/src/Makefile
seekbar/Makefile
seekbar/meta/Makefile
seekbar/po/Makefile
seekbar/src/Makefile
setpasswd/Makefile
setpasswd/meta/Makefile
setpasswd/po/Makefile
setpasswd/src/Makefile
shoutcast/Makefile
shoutcast/meta/Makefile
shoutcast/po/Makefile
shoutcast/src/Makefile
showclock/Makefile
showclock/meta/Makefile
showclock/po/Makefile
showclock/src/Makefile
simplerss/Makefile
simplerss/meta/Makefile
simplerss/po/Makefile
simplerss/src/Makefile
srfmediathek/Makefile
srfmediathek/meta/Makefile
srfmediathek/src/Makefile
srfmediathek/src/img/Makefile
systemtime/Makefile
systemtime/meta/Makefile
systemtime/po/Makefile
systemtime/src/Makefile
systemtime/src/images/Makefile
svdrp/Makefile
svdrp/meta/Makefile
svdrp/src/Makefile
tageditor/Makefile
tageditor/meta/Makefile
tageditor/po/Makefile
tageditor/src/Makefile
trafficinfo/Makefile
trafficinfo/meta/Makefile
trafficinfo/src/Makefile
transcodingsetup/Makefile
transcodingsetup/src/Makefile
transcodingsetup/po/Makefile
transcodingsetup/meta/Makefile
transmission/Makefile
transmission/src/Makefile
transmission/po/Makefile
transmission/meta/Makefile
tvcharts/Makefile
tvcharts/meta/Makefile
tvcharts/src/Makefile
unwetterinfo/Makefile
unwetterinfo/meta/Makefile
unwetterinfo/src/Makefile
valixdcontrol/Makefile
valixdcontrol/meta/Makefile
valixdcontrol/src/Makefile
valixdcontrol/src/comp/Makefile
valixdcontrol/src/data/Makefile
virtualzap/Makefile
virtualzap/meta/Makefile
virtualzap/po/Makefile
virtualzap/src/Makefile
vlcplayer/Makefile
vlcplayer/meta/Makefile
vlcplayer/po/Makefile
vlcplayer/src/Makefile
vfdcontrol/Makefile
vfdcontrol/meta/Makefile
vfdcontrol/po/Makefile
vfdcontrol/src/Makefile
webcamviewer/Makefile
webcamviewer/meta/Makefile
webcamviewer/src/Makefile
werbezapper/Makefile
werbezapper/meta/Makefile
werbezapper/po/Makefile
werbezapper/src/Makefile
zaphistorybrowser/Makefile
zaphistorybrowser/meta/Makefile
zaphistorybrowser/po/Makefile
zaphistorybrowser/src/Makefile
zapstatistic/Makefile
zapstatistic/meta/Makefile
zapstatistic/po/Makefile
zapstatistic/src/Makefile
zdfmediathek/Makefile
zdfmediathek/meta/Makefile
zdfmediathek/src/Makefile
zdfmediathek/src/img/Makefile
])
AC_OUTPUT