-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfigure.ac
103 lines (93 loc) · 3.64 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
AC_INIT(plugins,0.0.1)
AM_INIT_AUTOMAKE(plugins,0.0.1)
TUXBOX_APPS_DIRECTORY
AM_PATH_PYTHON()
AC_PYTHON_DEVEL
AC_PROG_CXX
AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
AC_ARG_WITH(boxtype,
[ --with-boxtype=NAME box type [[none,dm7025,dm800...]]],
[BOXTYPE="$withval"],[BOXTYPE="dm800"])
AC_SUBST(BOXTYPE)
AC_DEFINE_UNQUOTED(BOXTYPE,"$BOXTYPE",[box type])
AM_CONDITIONAL([DM8000], [test "$BOXTYPE" = "dm8000"])
AM_CONDITIONAL([DM7025], [test "$BOXTYPE" = "dm7025"])
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(XGETTEXT, xgettext)
if test -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$XGETTEXT"; then
AC_MSG_ERROR([Could not find required gettext tools])
fi
fi
AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
AC_OUTPUT([
Makefile
PLi/Makefile
PLi/SoftcamSetup/Makefile
PLi/SoftcamSetup/images/Makefile
PLi/SoftcamSetup/src/Makefile
PLi/SoftcamSetup/po/Makefile
Extensions/Makefile
Extensions/UShare/Makefile
Extensions/OpenUitzendingGemist/Makefile
Extensions/nStreamVOD/Makefile
Extensions/nStreamVOD/img/Makefile
Extensions/nStreamVOD/img/playlist/Makefile
Extensions/nStreamVOD/Moduls/Makefile
Extensions/1channel/Makefile
Extensions/MyTube/Makefile
Extensions/MyTube/meta/Makefile
Extensions/MyTube/src/Makefile
Extensions/MyTube/po/Makefile
Extensions/PermanentTimeshift/Makefile
Extensions/PermanentTimeshift/images/Makefile
Extensions/PermanentTimeshift/images/icon/Makefile
Extensions/PermanentTimeshift/images/now/Makefile
Extensions/PermanentTimeshift/locale/Makefile
Extensions/PermanentTimeshift/locale/de/Makefile
Extensions/PermanentTimeshift/locale/de/LC_MESSAGES/Makefile
Extensions/PermanentTimeshift/locale/it/Makefile
Extensions/PermanentTimeshift/locale/it/LC_MESSAGES/Makefile
Extensions/PermanentTimeshift/locale/pl/Makefile
Extensions/PermanentTimeshift/locale/pl/LC_MESSAGES/Makefile
Extensions/PermanentTimeshift/locale/ru/Makefile
Extensions/PermanentTimeshift/locale/ru/LC_MESSAGES/Makefile
Extensions/PermanentTimeshift/locale/sk/Makefile
Extensions/PermanentTimeshift/locale/sk/LC_MESSAGES/Makefile
Extensions/PPanel/Makefile
Extensions/PPanel/data/Makefile
])
#Extensions/CoolTVGuide/Makefile
#Extensions/CoolTVGuide/Components/Makefile
#Extensions/CoolTVGuide/Components/Renderer/Makefile
#Extensions/CoolTVGuide/Cool3D/Makefile
#Extensions/CoolTVGuide/Cool3D/Menu/Makefile
#Extensions/CoolTVGuide/Cool3D/MyDesign/Makefile
#Extensions/CoolTVGuide/Cool3D/Standard/Makefile
#Extensions/CoolTVGuide/CoolSkin/Makefile
#Extensions/CoolTVGuide/locale/Makefile
#Extensions/CoolTVGuide/locale/bg/Makefile
#Extensions/CoolTVGuide/locale/bg/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/cs/Makefile
#Extensions/CoolTVGuide/locale/cs/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/de/Makefile
#Extensions/CoolTVGuide/locale/de/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/fa/Makefile
#Extensions/CoolTVGuide/locale/fa/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/fr/Makefile
#Extensions/CoolTVGuide/locale/fr/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/it/Makefile
#Extensions/CoolTVGuide/locale/it/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/nl/Makefile
#Extensions/CoolTVGuide/locale/nl/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/no/Makefile
#Extensions/CoolTVGuide/locale/no/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/pl/Makefile
#Extensions/CoolTVGuide/locale/pl/LC_MESSAGES/Makefile
#Extensions/CoolTVGuide/locale/sk/Makefile
#Extensions/CoolTVGuide/locale/sk/LC_MESSAGES/Makefile