source: titan/plugins/configure.ac

Last change on this file was 45927, checked in by obi, 15 months ago

fix

File size: 2.6 KB
Line 
1AC_INIT(tuxbox-apps-titan-plugins,0.0.1,,tuxbox-titan-plugins)
2AM_INIT_AUTOMAKE(tuxbox-titan-plugins,0.0.1)
3
4TUXBOX_APPS
5
6AC_PROG_CC
7AC_PROG_CXX
8AM_PROG_LIBTOOL
9
10AC_ARG_ENABLE([multicom322],
11        [AS_HELP_STRING(--enable-multicom322,    enable multicom322 stuff)],
12        [case "${enableval}" in
13                yes) enable_multicom322=true ;;
14                no) enable_multicom322=false ;;
15                *) AC_MSG_ERROR([bad value ${enableval} for --enable-multicom322]) ;;
16        esac])
17AM_CONDITIONAL([ENABLE_MULTICOM322], [test x$enable_multicom322 = xtrue])
18AC_SUBST(MULTICOM322)
19
20AC_ARG_ENABLE([multicom324],
21        [AS_HELP_STRING(--enable-multicom324,    enable multicom324 stuff)],
22        [case "${enableval}" in
23                yes) enable_multicom324=true ;;
24                no) enable_multicom324=false ;;
25                *) AC_MSG_ERROR([bad value ${enableval} for --enable-multicom324]) ;;
26        esac])
27AM_CONDITIONAL([ENABLE_MULTICOM324], [test x$enable_multicom324 = xtrue])
28AC_SUBST(MULTICOM324)
29
30
31
32AC_OUTPUT([
33    Makefile
34    browser/Makefile
35    browser/netsurf/Makefile
36
37    games/Makefile
38    games/catcatch/Makefile
39    games/sudoku/Makefile
40    games/wins3/Makefile
41
42    gui/Makefile
43    gui/e2starter/Makefile
44    gui/kodistarter/Makefile
45
46    infos/Makefile
47    infos/imdb/Makefile
48    infos/imdbapi/Makefile
49    infos/mboxinfo/Makefile
50    infos/stock/Makefile
51    infos/streaminfo/Makefile
52    infos/tmdb/Makefile
53    infos/tinews/Makefile
54    infos/weather/Makefile
55    infos/wm2018/Makefile
56
57    network/Makefile
58    network/dlna/Makefile
59    network/facebook/Makefile
60    network/ipsec/Makefile
61    network/minisatip/Makefile
62    network/networkbrowser/Makefile
63    network/networkbrowser/netlib/Makefile
64    network/satipclient/Makefile
65    network/xupnpd/Makefile
66
67    player/Makefile
68    player/dvdplayer/Makefile
69    player/gmediarender/Makefile
70    player/mc/Makefile
71    player/tithek/Makefile
72    player/tmc/Makefile
73
74    tools/Makefile
75    tools/autotimer/Makefile
76    tools/callmonitor1/Makefile
77    tools/filemanager/Makefile
78    tools/hello/Makefile
79    tools/instar/Makefile
80    tools/keylock/Makefile
81    tools/kravencfg/Makefile
82    tools/lcdpearl1/Makefile
83    tools/lcdsamsung/Makefile
84    tools/multiimage/Makefile
85    tools/optimize/Makefile
86    tools/panel/Makefile
87    tools/permtime/Makefile
88    tools/readerconfig/Makefile
89    tools/rgui/Makefile
90    tools/scriptexec/Makefile
91    tools/sispmctl/Makefile
92    tools/stopifnotused/Makefile
93    tools/tiwakeup/Makefile
94    tools/TopfieldVFD/Makefile
95    tools/tsschnitt/Makefile
96    tools/usbreset/Makefile
97    tools/wlandisplay/Makefile
98    tools/zapback/Makefile
99])
Note: See TracBrowser for help on using the repository browser.