Add vfd mode about right half display(--with-set-right-half-vfd-skin)
[vuplus_dvbapp] / configure.ac
1 AC_INIT([enigma2],[3.0.0],[enigma2-devel@lists.elitedvb.net])
2 AM_INIT_AUTOMAKE([dist-bzip2 no-define tar-pax -Wno-portability])
3 AC_CONFIG_HEADERS([enigma2_config.h])
4
5 # Silent rules are available since 1.11, but older versions
6 # are still in use. So don't use them unconditionally.
7 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
8
9 AC_USE_SYSTEM_EXTENSIONS
10 AC_SYS_LARGEFILE
11
12 AC_PROG_CC
13 AC_PROG_CXX
14 m4_ifdef([LT_INIT], [LT_INIT], [AC_PROG_LIBTOOL])
15 AC_CONFIG_MACRO_DIR([m4])
16
17 AC_CHECK_HEADERS([dbox/fp.h dbox/lcd-ks0713.h])
18
19 AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
20
21 AM_PATH_PYTHON
22 AX_PYTHON_DEVEL
23 AX_PKG_SWIG
24 AX_SWIG_ENABLE_CXX
25 AX_SWIG_PYTHON
26 AX_PTHREAD
27
28 TUXBOX_APPS_DVB
29
30 AM_CONDITIONAL(HAVE_GIT_DIR, test -d "$srcdir/.git")
31 AM_CONDITIONAL(HAVE_FAKE_GIT_DIR, test -f "$srcdir/.git/last_commit_info")
32
33 PKG_CHECK_MODULES(BASE, [freetype2 fribidi gstreamer-0.10 gstreamer-pbutils-0.10 libdvbsi++ libpng libxml-2.0 sigc++-1.2])
34 PKG_CHECK_MODULES(LIBDDVD, libdreamdvd, HAVE_LIBDDVD="yes", HAVE_LIBDDVD="no")
35 AM_CONDITIONAL(HAVE_LIBDDVD, test "$HAVE_LIBDDVD" = "yes")
36
37 AC_CHECK_LIB([dl], [dlopen], [LIBDL_LIBS="-ldl"], [AC_MSG_ERROR([Could not find libdl])])
38 AC_SUBST(LIBDL_LIBS)
39 AC_CHECK_LIB([jpeg], [jpeg_set_defaults], [LIBJPEG_LIBS="-ljpeg"], [AC_MSG_ERROR([Could not find libjpeg])])
40 AC_SUBST(LIBJPEG_LIBS)
41 AC_CHECK_LIB([ungif], [DGifOpen], [LIBGIF_LIBS="-lungif"], [AC_CHECK_LIB([gif], [DGifOpen], [LIBGIF_LIBS="-lgif"], [AC_MSG_ERROR([Could not find libgif or libungif])])])
42 AC_SUBST(LIBGIF_LIBS)
43
44 AC_LANG_PUSH([C++])
45 AC_CHECK_LIB([xmlccwrap], [exit], [LIBXMLCCWRAP_LIBS="-lxmlccwrap"], [AC_MSG_ERROR([Could not find libxmlccwrap])])
46 AC_SUBST(LIBXMLCCWRAP_LIBS)
47 AC_LANG_POP
48
49 AC_ARG_WITH(set-right-half-vfd-skin,
50         AC_HELP_STRING([--with-set-right-half-vfd-skin], [display right_half_vfd_icons from skin(for ultimo), yes or no]),
51         [[setrighthalfvfdskin=$withval]],
52         [[setrighthalfvfdskin=no]]
53 )
54 if test x"$setrighthalfvfdskin" != xno ; then
55         AC_DEFINE(SET_RIGHT_HALF_VFD_SKIN, 1,[Define when display right_half_vfd_icons from skin, for ultimo])
56 fi
57 AM_CONDITIONAL(SET_RIGHT_HALF_VFD_SKIN, test x"$setrighthalfvfdskin" != xno)
58
59 AC_ARG_WITH(libsdl,
60         AS_HELP_STRING([--with-libsdl],[use libsdl, yes or no]),
61         [with_libsdl=$withval],[with_libsdl=no])
62 if test "$with_libsdl" = "yes"; then
63         PKG_CHECK_MODULES(LIBSDL, sdl)
64 fi
65 AM_CONDITIONAL(HAVE_LIBSDL, test "$with_libsdl" = "yes")
66
67 AC_ARG_WITH(libxine,
68         AS_HELP_STRING([--with-libxine],[use libxine, yes or no]),
69         [with_libxine=$withval],[with_libxine=no])
70 if test "$with_libxine" = "yes"; then
71         PKG_CHECK_MODULES(LIBXINE, libxine)
72         AC_DEFINE([WITH_XINE],[1],[Define to 1 if you have libxine])
73 fi
74 AM_CONDITIONAL(HAVE_LIBXINE, test "$with_libxine" = "yes")
75
76 AC_ARG_WITH(debug,
77         AS_HELP_STRING([--without-debug],[disable debugging code]),
78         [with_debug="$withval"],[with_debug="yes"])
79 if test "$with_debug" = "yes"; then
80         DEBUG_CFLAGS="-ggdb3"
81         AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code])
82 fi
83
84 AC_ARG_WITH(memcheck,
85         AS_HELP_STRING([--with-memcheck],[enable memory leak checks]),
86         [with_memcheck="$withval"],[with_memcheck="no"])
87 if test "$with_memcheck" = "yes"; then
88         AC_DEFINE([MEMLEAK_CHECK],[1],[Define to 1 to enable memory leak checks])
89 fi
90
91 AC_ARG_WITH(po,
92         AS_HELP_STRING([--with-po],[enable updating of po files]),
93         [with_po="$withval"],[with_po="no"])
94 if test "$with_po" = "yes"; then
95         AC_PATH_PROG(MSGINIT, msginit)
96         AC_PATH_PROG(MSGMERGE, msgmerge)
97         AC_PATH_PROG(MSGUNIQ, msguniq)
98         AC_PATH_PROG(XGETTEXT, xgettext)
99         if test -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$XGETTEXT"; then
100                 AC_MSG_ERROR([Could not find required gettext tools])
101         fi
102 fi
103 AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
104
105 ENIGMA2_CFLAGS="-fno-rtti -fno-exceptions"
106 AC_SUBST(ENIGMA2_CFLAGS)
107
108 CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS"
109 CFLAGS="$CFLAGS $DEBUG_CFLAGS -Wall"
110 CXXFLAGS="$CXXFLAGS $DEBUG_CFLAGS -Wall $BASE_CFLAGS $ENIGMA2_CFLAGS $PTHREAD_CFLAGS"
111
112 AC_CONFIG_FILES([
113 Makefile
114 data/Makefile
115 data/fonts/Makefile
116 data/countries/Makefile
117 data/defaults/Makefile
118 data/defaults/Dream/Makefile
119 data/defaults/Dream/hdbouquets/Makefile
120 data/defaults/Dream/sdbouquets/Makefile
121 data/extensions/Makefile
122 data/keymaps/Makefile
123 data/skin_default/Makefile
124 data/skin_default/menu/Makefile
125 data/skin_default/icons/Makefile
126 data/skin_default/buttons/Makefile
127 data/skin_default/spinner/Makefile
128 include/Makefile
129 lib/Makefile
130 lib/actions/Makefile
131 lib/base/Makefile
132 lib/base/eenv.cpp
133 lib/driver/Makefile
134 lib/dvb/Makefile
135 lib/dvb/lowlevel/Makefile
136 lib/dvb_ci/Makefile
137 lib/gdi/Makefile
138 lib/gui/Makefile
139 lib/mmi/Makefile
140 lib/nav/Makefile
141 lib/python/Makefile
142 lib/python/Components/Makefile
143 lib/python/Components/Converter/Makefile
144 lib/python/Components/Renderer/Makefile
145 lib/python/Components/Sources/Makefile
146 lib/python/Screens/Makefile
147 lib/python/Plugins/Makefile
148 lib/python/Plugins/DemoPlugins/Makefile
149 lib/python/Plugins/DemoPlugins/TPMDemo/Makefile
150 lib/python/Plugins/DemoPlugins/TestPlugin/Makefile
151 lib/python/Plugins/Extensions/CutListEditor/Makefile
152 lib/python/Plugins/Extensions/CutListEditor/meta/Makefile
153 lib/python/Plugins/Extensions/DVDBurn/Makefile
154 lib/python/Plugins/Extensions/DVDBurn/meta/Makefile
155 lib/python/Plugins/Extensions/DVDPlayer/Makefile
156 lib/python/Plugins/Extensions/DVDPlayer/meta/Makefile
157 lib/python/Plugins/Extensions/DVDPlayer/src/Makefile
158 lib/python/Plugins/Extensions/GraphMultiEPG/Makefile
159 lib/python/Plugins/Extensions/GraphMultiEPG/meta/Makefile
160 lib/python/Plugins/Extensions/Makefile
161 lib/python/Plugins/Extensions/MediaPlayer/Makefile
162 lib/python/Plugins/Extensions/MediaPlayer/meta/Makefile
163 lib/python/Plugins/Extensions/MediaScanner/Makefile
164 lib/python/Plugins/Extensions/MediaScanner/meta/Makefile
165 lib/python/Plugins/Extensions/Modem/Makefile
166 lib/python/Plugins/Extensions/PicturePlayer/Makefile
167 lib/python/Plugins/Extensions/PicturePlayer/meta/Makefile
168 lib/python/Plugins/Extensions/PicturePlayer/data/Makefile
169 lib/python/Plugins/Extensions/SocketMMI/Makefile
170 lib/python/Plugins/Extensions/SocketMMI/meta/Makefile
171 lib/python/Plugins/Extensions/SocketMMI/src/Makefile
172 lib/python/Plugins/Extensions/TuxboxPlugins/Makefile
173 lib/python/Plugins/Extensions/TuxboxPlugins/meta/Makefile
174 lib/python/Plugins/Extensions/WebBrowser/Makefile
175 lib/python/Plugins/Extensions/WebBrowser/meta/Makefile
176 lib/python/Plugins/Extensions/WebBrowser/keymap/Makefile
177 lib/python/Plugins/SystemPlugins/CleanupWizard/Makefile
178 lib/python/Plugins/SystemPlugins/CleanupWizard/meta/Makefile
179 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/Makefile
180 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/meta/Makefile
181 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/Makefile
182 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/meta/Makefile
183 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/Makefile
184 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/meta/Makefile
185 lib/python/Plugins/SystemPlugins/DiseqcTester/Makefile
186 lib/python/Plugins/SystemPlugins/DiseqcTester/meta/Makefile
187 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/Makefile
188 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/meta/Makefile
189 lib/python/Plugins/SystemPlugins/Hotplug/Makefile
190 lib/python/Plugins/SystemPlugins/Hotplug/meta/Makefile
191 lib/python/Plugins/SystemPlugins/Makefile
192 lib/python/Plugins/SystemPlugins/TempFanControl/Makefile
193 lib/python/Plugins/SystemPlugins/TempFanControl/meta/Makefile
194 lib/python/Plugins/SystemPlugins/NetworkWizard/Makefile
195 lib/python/Plugins/SystemPlugins/NetworkWizard/meta/Makefile
196 lib/python/Plugins/SystemPlugins/NFIFlash/Makefile
197 lib/python/Plugins/SystemPlugins/NFIFlash/meta/Makefile
198 lib/python/Plugins/SystemPlugins/PositionerSetup/Makefile
199 lib/python/Plugins/SystemPlugins/PositionerSetup/meta/Makefile
200 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/Makefile
201 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/meta/Makefile
202 lib/python/Plugins/SystemPlugins/Satfinder/Makefile
203 lib/python/Plugins/SystemPlugins/Satfinder/meta/Makefile
204 lib/python/Plugins/SystemPlugins/SkinSelector/Makefile
205 lib/python/Plugins/SystemPlugins/SkinSelector/meta/Makefile
206 lib/python/Plugins/SystemPlugins/SoftwareManager/Makefile
207 lib/python/Plugins/SystemPlugins/SoftwareManager/meta/Makefile
208 lib/python/Plugins/SystemPlugins/VideoEnhancement/Makefile
209 lib/python/Plugins/SystemPlugins/VideoEnhancement/meta/Makefile
210 lib/python/Plugins/SystemPlugins/VideoTune/Makefile
211 lib/python/Plugins/SystemPlugins/VideoTune/meta/Makefile
212 lib/python/Plugins/SystemPlugins/Videomode/Makefile
213 lib/python/Plugins/SystemPlugins/Videomode/meta/Makefile
214 lib/python/Plugins/SystemPlugins/WirelessLan/Makefile
215 lib/python/Plugins/SystemPlugins/WirelessLan/meta/Makefile
216 lib/python/Plugins/SystemPlugins/FactoryTest/Makefile
217 lib/python/Plugins/SystemPlugins/Fancontrol/Makefile
218 lib/python/Plugins/SystemPlugins/Fancontrol/meta/Makefile
219 lib/python/Plugins/SystemPlugins/FPGAUpgrade/Makefile
220 lib/python/Plugins/SystemPlugins/FPGAUpgrade/meta/Makefile
221 lib/python/Plugins/SystemPlugins/WirelessLanSetup/Makefile
222 lib/python/Plugins/SystemPlugins/WirelessLanSetup/meta/Makefile
223 lib/python/Plugins/SystemPlugins/ManualFancontrol/Makefile
224 lib/python/Plugins/SystemPlugins/ManualFancontrol/meta/Makefile
225 lib/python/Plugins/SystemPlugins/Blindscan/Makefile
226 lib/python/Plugins/SystemPlugins/Blindscan/meta/Makefile
227 lib/python/Plugins/SystemPlugins/RemoteControlCode/Makefile
228 lib/python/Plugins/SystemPlugins/RemoteControlCode/meta/Makefile
229 lib/python/Plugins/SystemPlugins/UI3DSetup/Makefile
230 lib/python/Plugins/SystemPlugins/UI3DSetup/meta/Makefile
231 lib/python/Plugins/SystemPlugins/UIPositionSetup/Makefile
232 lib/python/Plugins/SystemPlugins/UIPositionSetup/meta/Makefile
233 lib/python/Plugins/SystemPlugins/HDMICEC/Makefile
234 lib/python/Plugins/SystemPlugins/HDMICEC/components/Makefile
235 lib/python/Plugins/SystemPlugins/HDMICEC/meta/Makefile
236 lib/python/Tools/Makefile
237 lib/service/Makefile
238 lib/components/Makefile
239 po/Makefile
240 main/Makefile
241 tools/Makefile
242 tools/enigma2.sh
243 enigma2.pc
244 ])
245 AC_DEFINE(BUILD_VUPLUS,1,[Define to 1 for vuplus])
246 AC_OUTPUT