-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
488 lines (418 loc) · 17.6 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
AC_INIT([neutrino-plugins],[0.0.1],[https://www.neutrino-images.de])
AM_INIT_AUTOMAKE([foreign])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
AC_GNU_SOURCE
TUXBOX_APPS
TUXBOX_APPS_DIRECTORY
TUXBOX_APPS_PKGCONFIG
TUXBOX_BOXTYPE
AC_PROG_CC
AC_PROG_CXX
PKG_PROG_PKG_CONFIG
## both disabled => libtool still defaults to static
## at least the libtool I tested with ;-)
## --enable-shared => build only shared
## --enable-shared --enable-static => build both
AC_DISABLE_STATIC
AC_SYS_LARGEFILE
LT_INIT
PKG_CHECK_MODULES(CURL,libcurl)
PKG_CHECK_MODULES(FREETYPE,freetype2)
PKG_CHECK_MODULES(PNG,libpng)
AC_ARG_WITH(lua-libdir,
AS_HELP_STRING([--with-lua-libdir=PATH], [path to Lua libdir @<:@default=NONE@:>@]]),
[LUA_LIBDIR="$withval"],
AC_MSG_ERROR([need --with-lua-libdir=...]))
AC_SUBST(LUA_LIBDIR)
AC_ARG_WITH(lua-datadir,
AS_HELP_STRING([--with-lua-datadir=PATH], [path to Lua datadir @<:@default=NONE@:>@]]),
[LUA_DATADIR="$withval"],
AC_MSG_ERROR([need --with-lua-datadir=...]))
AC_SUBST(LUA_DATADIR)
AC_ARG_WITH(neutrino-source,
AS_HELP_STRING([--with-neutrino-source=PATH], [path where Neutrino source is located @<:@default=NONE@:>@]]),
[NEUTRINO_SOURCE="$withval"],
[NEUTRINO_SOURCE=""])
AC_SUBST(NEUTRINO_SOURCE)
AC_ARG_WITH(neutrino-build,
AS_HELP_STRING([--with-neutrino-build=PATH], [path where Neutrino is built @<:@default=NONE@:>@]]),
[NEUTRINO_BUILD="$withval"],
[NEUTRINO_BUILD=""])
AC_SUBST(NEUTRINO_BUILD)
AC_ARG_ENABLE(asc2uni,
AS_HELP_STRING([--enable-asc2uni], [enable asc2uni @<:@default=yes@:>@]),
[enable_asc2uni="$enableval"],
[enable_asc2uni="yes"])
AM_CONDITIONAL(ENABLE_ASC2UNI, test "$enable_asc2uni" = "yes")
AC_ARG_ENABLE(coolitsclimax,
AS_HELP_STRING([--enable-coolitsclimax], [enable coolitsclimax @<:@default=yes@:>@]),
[enable_coolitsclimax="$enableval"],
[enable_coolitsclimax="yes"])
AM_CONDITIONAL(ENABLE_COOLITSCLIMAX, test "$enable_coolitsclimax" = "yes")
AC_ARG_ENABLE(emmrd,
AS_HELP_STRING([--enable-emmrd], [enable emmrd @<:@default=yes@:>@]),
[enable_emmrd="$enableval"],
[enable_emmrd="yes"])
AM_CONDITIONAL(ENABLE_EMMRD, test "$enable_emmrd" = "yes")
AC_ARG_ENABLE(fritzcallmonitor,
AS_HELP_STRING([--enable-fritzcallmonitor], [enable fritzcallmonitor @<:@default=yes@:>@]),
[enable_fritzcallmonitor="$enableval"],
[enable_fritzcallmonitor="yes"])
AM_CONDITIONAL(ENABLE_FRITZCALLMONITOR, test "$enable_fritzcallmonitor" = "yes")
AC_ARG_ENABLE(fritzinfomonitor,
AS_HELP_STRING([--enable-fritzinfomonitor], [enable fritzinfomonitor @<:@default=yes@:>@]),
[enable_fritzinfomonitor="$enableval"],
[enable_fritzinfomonitor="yes"])
AM_CONDITIONAL(ENABLE_FRITZINFOMONITOR, test "$enable_fritzinfomonitor" = "yes")
AC_ARG_ENABLE(getrc,
AS_HELP_STRING([--enable-getrc], [enable getrc @<:@default=yes@:>@]),
[enable_getrc="$enableval"],
[enable_getrc="yes"])
AM_CONDITIONAL(ENABLE_GETRC, test "$enable_getrc" = "yes")
AC_ARG_ENABLE(input,
AS_HELP_STRING([--enable-input], [enable input @<:@default=yes@:>@]),
[enable_input="$enableval"],
[enable_input="yes"])
AM_CONDITIONAL(ENABLE_INPUT, test "$enable_input" = "yes")
AC_ARG_ENABLE(logomask,
AS_HELP_STRING([--enable-logomask], [enable logomask @<:@default=yes@:>@]),
[enable_logomask="$enableval"],
[enable_logomask="yes"])
AM_CONDITIONAL(ENABLE_LOGOMASK, test "$enable_logomask" = "yes")
AC_ARG_ENABLE(logoview,
AS_HELP_STRING([--enable-logoview], [enable logoview @<:@default=yes@:>@]),
[enable_logoview="$enableval"],
[enable_logoview="yes"])
AM_CONDITIONAL(ENABLE_LOGOVIEW, test "$enable_logoview" = "yes")
AS_IF(test "$enable_logoview" = "yes",
AS_IF(test -z "$NEUTRINO_SOURCE", AC_MSG_ERROR([logoview needs --with-neutrino-source=...]))
AS_IF(test -z "$NEUTRINO_BUILD", AC_MSG_ERROR([logoview needs --with-neutrino-build=...])))
AC_ARG_ENABLE(msgbox,
AS_HELP_STRING([--enable-msgbox], [enable msgbox @<:@default=yes@:>@]),
[enable_msgbox="$enableval"],
[enable_msgbox="yes"])
AM_CONDITIONAL(ENABLE_MSGBOX, test "$enable_msgbox" = "yes")
AC_ARG_ENABLE(oscammon,
AS_HELP_STRING([--enable-oscammon], [enable oscammon @<:@default=yes@:>@]),
[enable_oscammon="$enableval"],
[enable_oscammon="yes"])
AM_CONDITIONAL(ENABLE_OSCAMMON, test "$enable_oscammon" = "yes")
AC_ARG_ENABLE(satfind,
AS_HELP_STRING([--enable-satfind], [enable satfind @<:@default=yes@:>@]),
[enable_satfind="$enableval"],
[enable_satfind="yes"])
AM_CONDITIONAL(ENABLE_SATFIND, test "$enable_satfind" = "yes")
AC_ARG_ENABLE(shellexec,
AS_HELP_STRING([--enable-shellexec], [enable shellexec @<:@default=yes@:>@]),
[enable_shellexec="$enableval"],
[enable_shellexec="yes"])
AM_CONDITIONAL(ENABLE_SHELLEXEC, test "$enable_shellexec" = "yes")
AC_ARG_ENABLE(showiframe,
AS_HELP_STRING([--enable-showiframe], [enable showiframe @<:@default=yes@:>@]),
[enable_showiframe="$enableval"],
[enable_showiframe="yes"])
AM_CONDITIONAL(ENABLE_SHOWIFRAME, test "$enable_showiframe" = "yes")
AC_ARG_ENABLE(stbup,
AS_HELP_STRING([--enable-stbup], [enable stbup @<:@default=yes@:>@]),
[enable_stbup="$enableval"],
[enable_stbup="yes"])
AM_CONDITIONAL(ENABLE_STBUP, test "$enable_stbup" = "yes")
AC_ARG_ENABLE(sysinfo,
AS_HELP_STRING([--enable-sysinfo], [enable sysinfo @<:@default=yes@:>@]),
[enable_sysinfo="$enableval"],
[enable_sysinfo="yes"])
AM_CONDITIONAL(ENABLE_SYSINFO, test "$enable_sysinfo" = "yes")
AC_ARG_ENABLE(tuxcal,
AS_HELP_STRING([--enable-tuxcal], [enable tuxcal @<:@default=yes@:>@]),
[enable_tuxcal="$enableval"],
[enable_tuxcal="yes"])
AM_CONDITIONAL(ENABLE_TUXCAL, test "$enable_tuxcal" = "yes")
AC_ARG_ENABLE(tuxcom,
AS_HELP_STRING([--enable-tuxcom], [enable tuxcom @<:@default=yes@:>@]),
[enable_tuxcom="$enableval"],
[enable_tuxcom="yes"])
AM_CONDITIONAL(ENABLE_TUXCOM, test "$enable_tuxcom" = "yes")
AC_ARG_ENABLE(tuxmail,
AS_HELP_STRING([--enable-tuxmail], [enable tuxmail @<:@default=yes@:>@]),
[enable_tuxmail="$enableval"],
[enable_tuxmail="yes"])
AM_CONDITIONAL(ENABLE_TUXMAIL, test "$enable_tuxmail" = "yes")
AC_ARG_ENABLE(tuxwetter,
AS_HELP_STRING([--enable-tuxwetter], [enable tuxwetter @<:@default=yes@:>@]),
[enable_tuxwetter="$enableval"],
[enable_tuxwetter="yes"])
AM_CONDITIONAL(ENABLE_TUXWETTER, test "$enable_tuxwetter" = "yes")
AC_ARG_ENABLE(vinfo,
AS_HELP_STRING([--enable-vinfo], [enable vinfo @<:@default=yes@:>@]),
[enable_vinfo="$enableval"],
[enable_vinfo="yes"])
AM_CONDITIONAL(ENABLE_VINFO, test "$enable_vinfo" = "yes")
AC_ARG_ENABLE(2webtvxml,
AS_HELP_STRING([--enable-2webtvxml], [enable 2webTVxml @<:@default=yes@:>@]),
[enable_2webtvxml="$enableval"],
[enable_2webtvxml="yes"])
AM_CONDITIONAL(ENABLE_2WEBTVXML, test "$enable_2webtvxml" = "yes")
AC_ARG_ENABLE(add-locale,
AS_HELP_STRING([--enable-add-locale], [enable add-locale @<:@default=yes@:>@]),
[enable_add_locale="$enableval"],
[enable_add_locale="yes"])
AM_CONDITIONAL(ENABLE_ADD_LOCALE, test "$enable_add_locale" = "yes")
AC_ARG_ENABLE(ard_mediathek,
AS_HELP_STRING([--enable-ard_mediathek], [enable ard_mediathek @<:@default=yes@:>@]),
[enable_ard_mediathek="$enableval"],
[enable_ard_mediathek="yes"])
AM_CONDITIONAL(ENABLE_ARD_MEDIATHEK, test "$enable_ard_mediathek" = "yes")
AC_ARG_ENABLE(epgfilter,
AS_HELP_STRING([--enable-epgfilter], [enable epgfilter @<:@default=yes@:>@]),
[enable_epgfilter="$enableval"],
[enable_epgfilter="yes"])
AM_CONDITIONAL(ENABLE_EPGFILTER, test "$enable_epgfilter" = "yes")
AC_ARG_ENABLE(epgscan-setup,
AS_HELP_STRING([--enable-epgscan-setup], [enable epgscan-setup @<:@default=yes@:>@]),
[enable_epgscan_setup="$enableval"],
[enable_epgscan_setup="yes"])
AM_CONDITIONAL(ENABLE_EPGSCAN_SETUP, test "$enable_epgscan_setup" = "yes")
AC_ARG_ENABLE(favorites2bin,
AS_HELP_STRING([--enable-favorites2bin], [enable favorites2bin @<:@default=yes@:>@]),
[enable_favorites2bin="$enableval"],
[enable_favorites2bin="yes"])
AM_CONDITIONAL(ENABLE_FAVORITES2BIN, test "$enable_favorites2bin" = "yes")
AC_ARG_ENABLE(freeze,
AS_HELP_STRING([--enable-freeze], [enable freeze @<:@default=yes@:>@]),
[enable_freeze="$enableval"],
[enable_freeze="yes"])
AM_CONDITIONAL(ENABLE_FREEZE, test "$enable_freeze" = "yes")
AC_ARG_ENABLE(fritzinfomonitor-setup,
AS_HELP_STRING([--enable-fritzinfomonitor-setup], [enable fritzinfomonitor-setup @<:@default=yes@:>@]),
[enable_fritzinfomonitor_setup="$enableval"],
[enable_fritzinfomonitor_setup="yes"])
AM_CONDITIONAL(ENABLE_FRITZINFOMONITOR_SETUP, test "$enable_fritzinfomonitor_setup" = "yes")
AC_ARG_ENABLE(heizoelpreise,
AS_HELP_STRING([--enable-heizoelpreise], [enable heizoelpreise @<:@default=yes@:>@]),
[enable_heizoelpreise="$enableval"],
[enable_heizoelpreise="yes"])
AM_CONDITIONAL(ENABLE_HEIZOELPREISE, test "$enable_heizoelpreise" = "yes")
AC_ARG_ENABLE(localtv,
AS_HELP_STRING([--enable-localtv], [enable localtv @<:@default=yes@:>@]),
[enable_localtv="$enableval"],
[enable_localtv="yes"])
AM_CONDITIONAL(ENABLE_LOCALTV, test "$enable_localtv" = "yes")
AC_ARG_ENABLE(logoupdater,
AS_HELP_STRING([--enable-logoupdater], [enable logoupdater @<:@default=yes@:>@]),
[enable_logoupdater="$enableval"],
[enable_logoupdater="yes"])
AM_CONDITIONAL(ENABLE_LOGOUPDATER, test "$enable_logoupdater" = "yes")
AC_ARG_ENABLE(mediathek,
AS_HELP_STRING([--enable-mediathek], [enable mediathek @<:@default=yes@:>@]),
[enable_mediathek="$enableval"],
[enable_mediathek="yes"])
AM_CONDITIONAL(ENABLE_MEDIATHEK, test "$enable_mediathek" = "yes")
AC_ARG_ENABLE(mtv,
AS_HELP_STRING([--enable-mtv], [enable mtv @<:@default=yes@:>@]),
[enable_mtv="$enableval"],
[enable_mtv="yes"])
AM_CONDITIONAL(ENABLE_MTV, test "$enable_mtv" = "yes")
AC_ARG_ENABLE(netzkino,
AS_HELP_STRING([--enable-netzkino], [enable netzkino @<:@default=yes@:>@]),
[enable_netzkino="$enableval"],
[enable_netzkino="yes"])
AM_CONDITIONAL(ENABLE_NETZKINO, test "$enable_netzkino" = "yes")
AC_ARG_ENABLE(openvpn-setup,
AS_HELP_STRING([--enable-openvpn-setup], [enable openvpn-setup @<:@default=yes@:>@]),
[enable_openvpn_setup="$enableval"],
[enable_openvpn_setup="yes"])
AM_CONDITIONAL(ENABLE_OPENVPN_SETUP, test "$enable_openvpn_setup" = "yes")
AC_ARG_ENABLE(replay,
AS_HELP_STRING([--enable-replay], [enable replay plugin @<:@default=yes@:>@]),
[enable_replay="$enableval"],
[enable_replay="yes"])
AM_CONDITIONAL(ENABLE_REPLAY, test "$enable_replay" = "yes")
AC_ARG_ENABLE(rcu_switcher,
AS_HELP_STRING([--enable-rcu_switcher], [enable rcu_switcher @<:@default=yes@:>@]),
[enable_rcu_switcher="$enableval"],
[enable_rcu_switcher="yes"])
AM_CONDITIONAL(ENABLE_RCU_SWITCHER, test "$enable_rcu_switcher" = "yes")
AC_ARG_ENABLE(rss,
AS_HELP_STRING([--enable-rss], [enable rss-reader @<:@default=yes@:>@]),
[enable_rss="$enableval"],
[enable_rss="yes"])
AM_CONDITIONAL(ENABLE_RSS, test "$enable_rss" = "yes")
AC_ARG_ENABLE(spiegel_tv_doc,
AS_HELP_STRING([--enable-spiegel_tv_doc], [enable spiegel-tv-doc @<:@default=yes@:>@]),
[enable_spiegel_tv_doc="$enableval"],
[enable_spiegel_tv_doc="yes"])
AM_CONDITIONAL(ENABLE_SPIEGEL_TV_DOC, test "$enable_spiegel_tv_doc" = "yes")
AC_ARG_ENABLE(stb_startup,
AS_HELP_STRING([--enable-stb_startup], [enable stb_startup @<:@default=yes@:>@]),
[enable_stb_startup="$enableval"],
[enable_stb_startup="yes"])
AM_CONDITIONAL(ENABLE_STB_STARTUP, test "$enable_stb_startup" = "yes")
AC_ARG_ENABLE(tierwelt_tv,
AS_HELP_STRING([--enable-tierwelt_tv], [enable tierwelt-tv @<:@default=yes@:>@]),
[enable_tierwelt_tv="$enableval"],
[enable_tierwelt_tv="yes"])
AM_CONDITIONAL(ENABLE_TIERWELT_TV, test "$enable_tierwelt_tv" = "yes")
AC_ARG_ENABLE(userbouquets,
AS_HELP_STRING([--enable-userbouquets], [enable userbouquets @<:@default=yes@:>@]),
[enable_userbouquets="$enableval"],
[enable_userbouquets="yes"])
AM_CONDITIONAL(ENABLE_USERBOUQUETS, test "$enable_userbouquets" = "yes")
AC_ARG_ENABLE(autoreboot,
AS_HELP_STRING([--enable-autoreboot], [enable autoreboot @<:@default=yes@:>@]),
[enable_autoreboot"$enableval"],
[enable_autoreboot="yes"])
AM_CONDITIONAL(ENABLE_AUTOREBOOT, test "$enable_autoreboot" = "yes")
AC_ARG_ENABLE(dropbox_uploader,
AS_HELP_STRING([--enable-dropbox_uploader], [enable dropbox_uploader @<:@default=yes@:>@]),
[enable_dropbox_uploader="$enableval"],
[enable_dropbox_uploader="yes"])
AM_CONDITIONAL(ENABLE_DROPBOX_UPLOADER, test "$enable_dropbox_uploader" = "yes")
AC_ARG_ENABLE(epgscan,
AS_HELP_STRING([--enable-epgscan], [enable epgscan @<:@default=yes@:>@]),
[enable_epgscan="$enableval"],
[enable_epgscan="yes"])
AM_CONDITIONAL(ENABLE_EPGSCAN, test "$enable_epgscan" = "yes")
AC_ARG_ENABLE(imgbackup,
AS_HELP_STRING([--enable-imgbackup], [enable imgbackup @<:@default=yes@:>@]),
[enable_imgbackup="$enableval"],
[enable_imgbackup="yes"])
AM_CONDITIONAL(ENABLE_IMGBACKUP, test "$enable_imgbackup" = "yes")
AC_ARG_ENABLE(mountpointmanagement,
AS_HELP_STRING([--enable-mountpointmanagement], [enable mountpointmanagement @<:@default=yes@:>@]),
[enable_mountpointmanagement="$enableval"],
[enable_mountpointmanagement="yes"])
AM_CONDITIONAL(ENABLE_MOUNTPOINTMANAGEMENT, test "$enable_mountpointmanagement" = "yes")
AC_ARG_ENABLE(pr-auto-timer,
AS_HELP_STRING([--enable-pr-auto-timer], [enable pr-auto-timer @<:@default=yes@:>@]),
[enable_pr_auto_timer="$enableval"],
[enable_pr_auto_timer="yes"])
AM_CONDITIONAL(ENABLE_PR_AUTO_TIMER, test "$enable_pr_auto_timer" = "yes")
AC_ARG_ENABLE(smarthomeinfo,
AS_HELP_STRING([--enable-smarthomeinfo], [enable smarthomeinfo @<:@default=yes@:>@]),
[enable_smarthomeinfo="$enableval"],
[enable_smarthomeinfo="yes"])
AM_CONDITIONAL(ENABLE_SMARTHOMEINFO, test "$enable_smarthomeinfo" = "yes")
AC_ARG_ENABLE(wortraten,
AS_HELP_STRING([--enable-wortraten], [enable wortraten @<:@default=no@:>@]),
[enable_wortraten="yes"],
[enable_wortraten="$enableval"])
AM_CONDITIONAL(ENABLE_WORTRATEN, test "$enable_wortraten" = "yes")
AC_ARG_ENABLE(zdfhbbtv,
AS_HELP_STRING([--enable-zdfhbbtv], [enable zdfhbbtv @<:@default=yes@:>@]),
[enable_zdfhbbtv="$enableval"],
[enable_zdfhbbtv="yes"])
AM_CONDITIONAL(ENABLE_ZDFHBBTV, test "$enable_zdfhbbtv" = "yes")
AC_ARG_ENABLE(filmon,
AS_HELP_STRING([--enable-filmon], [enable webtv filmon @<:@default=yes@:>@]),
[enable_filmon="$enableval"],
[enable_filmon="yes"])
AM_CONDITIONAL(ENABLE_FILMON, test "$enable_filmon" = "yes")
AC_ARG_ENABLE(plutotv,
AS_HELP_STRING([--enable-plutotv], [enable webtv plutotv @<:@default=yes@:>@]),
[enable_plutotv="$enableval"],
[enable_plutotv="yes"])
AM_CONDITIONAL(ENABLE_PLUTOTV, test "$enable_plutotv" = "yes")
AC_ARG_ENABLE(plutotv-update,
AS_HELP_STRING([--enable-plutotv-update], [enable plutotv-update @<:@default=yes@:>@]),
[enable_plutotv_update="$enableval"],
[enable_plutotv_update="yes"])
AM_CONDITIONAL(ENABLE_PLUTOTV_UPDATE, test "$enable_plutotv_update" = "yes" -a "$enable_plutotv" = "yes")
AC_ARG_ENABLE(plutotv-vod,
AS_HELP_STRING([--enable-plutotv-vod], [enable plutotv-vod @<:@default=yes@:>@]),
[enable_plutotv_vod="$enableval"],
[enable_plutotv_vod="yes"])
AM_CONDITIONAL(ENABLE_PLUTOTV_VOD, test "$enable_plutotv_vod" = "yes" -a "$enable_plutotv" = "yes")
AC_ARG_ENABLE(rakutentv,
AS_HELP_STRING([--enable-rakutentv], [enable webtv rakutentv @<:@default=yes@:>@]),
[enable_rakutentv="$enableval"],
[enable_rakutentv="yes"])
AM_CONDITIONAL(ENABLE_RAKUTENTV, test "$enable_rakutentv" = "yes")
AC_ARG_ENABLE(yt_live,
AS_HELP_STRING([--enable-yt_live], [enable webtv yt_live @<:@default=yes@:>@]),
[enable_yt_live="$enableval"],
[enable_yt_live="yes"])
AM_CONDITIONAL(ENABLE_YT_LIVE, test "$enable_yt_live" = "yes")
dnl enable n_libraries by conditions set above
AM_CONDITIONAL(ENABLE_N_LIBRARIES, test "$enable_mediathek" = "yes")
AC_CONFIG_FILES([
Makefile
asc2uni/Makefile
cooliTSclimax/Makefile
data/Makefile
data/fonts/Makefile
emmrd/Makefile
FritzCallMonitor/Makefile
FritzInfoMonitor/Makefile
getrc/Makefile
initfb/Makefile
input/Makefile
logomask/Makefile
logoview/Makefile
msgbox/Makefile
oled_ctrl/Makefile
oscammon/Makefile
satfind/Makefile
scripts-lua/Makefile
scripts-lua/plugins/Makefile
scripts-lua/plugins/2webTVxml/Makefile
scripts-lua/plugins/add-locale/Makefile
scripts-lua/plugins/ard_mediathek/Makefile
scripts-lua/plugins/epgfilter/Makefile
scripts-lua/plugins/EPGscan-setup/Makefile
scripts-lua/plugins/favorites2bin/Makefile
scripts-lua/plugins/freeze/Makefile
scripts-lua/plugins/FritzInfoMonitor-setup/Makefile
scripts-lua/plugins/heizoelpreise/Makefile
scripts-lua/plugins/LocalTV/Makefile
scripts-lua/plugins/logoupdater/Makefile
scripts-lua/plugins/mediathek/Makefile
scripts-lua/plugins/mtv/Makefile
scripts-lua/plugins/n_libraries/Makefile
scripts-lua/plugins/netzkino/Makefile
scripts-lua/plugins/openvpn-setup/Makefile
scripts-lua/plugins/openvpn-setup/openvpn-setup/Makefile
scripts-lua/plugins/plutotv-update/Makefile
scripts-lua/plugins/plutotv-vod/Makefile
scripts-lua/plugins/replay/Makefile
scripts-lua/plugins/rcu_switcher/Makefile
scripts-lua/plugins/rss/Makefile
scripts-lua/plugins/spiegel-tv-doc/Makefile
scripts-lua/plugins/stb_startup/Makefile
scripts-lua/plugins/stb_startup-ddt/Makefile
scripts-lua/plugins/tierwelt-tv/Makefile
scripts-lua/plugins/userbouquets/Makefile
scripts-lua/plugins/webradio/Makefile
scripts-lua/plugins/webtv/Makefile
scripts-lua/plugins/zdfhbbtv/Makefile
scripts-sh/Makefile
scripts-sh/plugins/Makefile
scripts-sh/plugins/autoreboot/Makefile
scripts-sh/plugins/dropbox_uploader/Makefile
scripts-sh/plugins/EPGscan/Makefile
scripts-sh/plugins/get-compiler/Makefile
scripts-sh/plugins/imgbackup/Makefile
scripts-sh/plugins/mountpointmanagement/Makefile
scripts-sh/plugins/plugins-hide/Makefile
scripts-sh/plugins/pr-auto-timer/Makefile
scripts-sh/plugins/smarthomeinfo/Makefile
scripts-sh/plugins/wortraten/Makefile
shellexec/Makefile
shellexec/shellexec.conf
showiframe/Makefile
stbup/Makefile
sysinfo/Makefile
turnoff_power/Makefile
tuxcal/Makefile
tuxcal/daemon/Makefile
tuxcom/Makefile
tuxmail/Makefile
tuxmail/daemon/Makefile
tuxwetter/Makefile
tuxwetter/icons/Makefile
vinfo/Makefile
])
# init scripts
AC_CONFIG_FILES([
scripts-sh/plugins/plugins-hide/plugins-hide
])
AC_OUTPUT