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])
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])])
9 AC_USE_SYSTEM_EXTENSIONS
14 m4_ifdef([LT_INIT], [LT_INIT], [AC_PROG_LIBTOOL])
15 AC_CONFIG_MACRO_DIR([m4])
17 AC_CHECK_HEADERS([dbox/fp.h dbox/lcd-ks0713.h])
19 AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
30 AM_CONDITIONAL(HAVE_GIT_DIR, test -d "$srcdir/.git")
31 AM_CONDITIONAL(HAVE_FAKE_GIT_DIR, test -f "$srcdir/.git/last_commit_info")
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")
37 AC_CHECK_LIB([dl], [dlopen], [LIBDL_LIBS="-ldl"], [AC_MSG_ERROR([Could not find libdl])])
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])])])
45 AC_CHECK_LIB([xmlccwrap], [exit], [LIBXMLCCWRAP_LIBS="-lxmlccwrap"], [AC_MSG_ERROR([Could not find libxmlccwrap])])
46 AC_SUBST(LIBXMLCCWRAP_LIBS)
50 [ --with-boxtype=NAME box type [[none,dm7025,dm800...]]],
51 [BOXTYPE="$withval"],[BOXTYPE="dm800"])
53 AC_DEFINE_UNQUOTED(BOXTYPE,"$BOXTYPE",[box type])
56 AC_HELP_STRING([--with-textlcd], [use ascii based lcd, yes or no]),
57 [[withtextlcd=$withval]],
60 if test x"$withtextlcd" != xno ; then
61 AC_DEFINE(HAVE_TEXTLCD, 1,[Define when using an ascii based lcd device])
63 AM_CONDITIONAL(HAVE_TEXTLCD, test x"$withtextlcd" != xno)
66 AC_HELP_STRING([--with-colorlcd], [use 96x64 16bpp color display, yes or no]),
67 [[withcolorlcd=$withval]],
70 if test x"$withcolorlcd" != xno ; then
71 AC_DEFINE(HAVE_COLORLCD, 1,[Define when using a 96x64 color display device])
73 AM_CONDITIONAL(HAVE_COLORLCD, test x"$withcolorlcd" != xno)
76 AS_HELP_STRING([--with-libsdl],[use libsdl, yes or no]),
77 [with_libsdl=$withval],[with_libsdl=no])
78 if test "$with_libsdl" = "yes"; then
79 PKG_CHECK_MODULES(LIBSDL, sdl)
81 AM_CONDITIONAL(HAVE_LIBSDL, test "$with_libsdl" = "yes")
84 AS_HELP_STRING([--with-libxine],[use libxine, yes or no]),
85 [with_libxine=$withval],[with_libxine=no])
86 if test "$with_libxine" = "yes"; then
87 PKG_CHECK_MODULES(LIBXINE, libxine)
88 AC_DEFINE([WITH_XINE],[1],[Define to 1 if you have libxine])
90 AM_CONDITIONAL(HAVE_LIBXINE, test "$with_libxine" = "yes")
93 AS_HELP_STRING([--without-debug],[disable debugging code]),
94 [with_debug="$withval"],[with_debug="yes"])
95 if test "$with_debug" = "yes"; then
97 AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code])
100 AC_ARG_WITH(memcheck,
101 AS_HELP_STRING([--with-memcheck],[enable memory leak checks]),
102 [with_memcheck="$withval"],[with_memcheck="no"])
103 if test "$with_memcheck" = "yes"; then
104 AC_DEFINE([MEMLEAK_CHECK],[1],[Define to 1 to enable memory leak checks])
108 AS_HELP_STRING([--with-po],[enable updating of po files]),
109 [with_po="$withval"],[with_po="no"])
110 if test "$with_po" = "yes"; then
111 AC_PATH_PROG(MSGINIT, msginit)
112 AC_PATH_PROG(MSGMERGE, msgmerge)
113 AC_PATH_PROG(MSGUNIQ, msguniq)
114 AC_PATH_PROG(XGETTEXT, xgettext)
115 if test -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$XGETTEXT"; then
116 AC_MSG_ERROR([Could not find required gettext tools])
119 AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
121 ENIGMA2_CFLAGS="-fno-rtti -fno-exceptions"
122 AC_SUBST(ENIGMA2_CFLAGS)
124 CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS"
125 CFLAGS="$CFLAGS $DEBUG_CFLAGS -Wall"
126 CXXFLAGS="$CXXFLAGS $DEBUG_CFLAGS -Wall $BASE_CFLAGS $ENIGMA2_CFLAGS $PTHREAD_CFLAGS"
132 data/countries/Makefile
133 data/defaults/Makefile
134 data/defaults/Dream/Makefile
135 data/defaults/Dream/hdbouquets/Makefile
136 data/defaults/Dream/sdbouquets/Makefile
137 data/extensions/Makefile
138 data/keymaps/Makefile
139 data/skin_default/Makefile
140 data/skin_default/menu/Makefile
141 data/skin_default/icons/Makefile
142 data/skin_default/buttons/Makefile
143 data/skin_default/spinner/Makefile
151 lib/dvb/lowlevel/Makefile
159 lib/python/Components/Makefile
160 lib/python/Components/Converter/Makefile
161 lib/python/Components/Renderer/Makefile
162 lib/python/Components/Sources/Makefile
163 lib/python/Screens/Makefile
164 lib/python/Plugins/Makefile
165 lib/python/Plugins/SystemPlugins/SoftwareUpdate/Makefile
166 lib/python/Plugins/SystemPlugins/ConfigurationBackup/Makefile
167 lib/python/Plugins/SystemPlugins/CableScan/Makefile
168 lib/python/Plugins/SystemPlugins/FastScan/Makefile
169 lib/python/Plugins/SystemPlugins/OSDPositionSetup/Makefile
170 lib/python/Plugins/SystemPlugins/OSD3DSetup/Makefile
171 lib/python/Plugins/DemoPlugins/Makefile
172 lib/python/Plugins/DemoPlugins/TPMDemo/Makefile
173 lib/python/Plugins/DemoPlugins/TestPlugin/Makefile
174 lib/python/Plugins/Extensions/CutListEditor/Makefile
175 lib/python/Plugins/Extensions/CutListEditor/meta/Makefile
176 lib/python/Plugins/Extensions/DVDBurn/Makefile
177 lib/python/Plugins/Extensions/DVDBurn/meta/Makefile
178 lib/python/Plugins/Extensions/DVDPlayer/Makefile
179 lib/python/Plugins/Extensions/DVDPlayer/meta/Makefile
180 lib/python/Plugins/Extensions/DVDPlayer/src/Makefile
181 lib/python/Plugins/Extensions/GraphMultiEPG/Makefile
182 lib/python/Plugins/Extensions/GraphMultiEPG/meta/Makefile
183 lib/python/Plugins/Extensions/Makefile
184 lib/python/Plugins/Extensions/MediaPlayer/Makefile
185 lib/python/Plugins/Extensions/MediaPlayer/meta/Makefile
186 lib/python/Plugins/Extensions/MediaScanner/Makefile
187 lib/python/Plugins/Extensions/MediaScanner/meta/Makefile
188 lib/python/Plugins/Extensions/Modem/Makefile
189 lib/python/Plugins/Extensions/PicturePlayer/Makefile
190 lib/python/Plugins/Extensions/PicturePlayer/meta/Makefile
191 lib/python/Plugins/Extensions/PicturePlayer/data/Makefile
192 lib/python/Plugins/Extensions/SocketMMI/Makefile
193 lib/python/Plugins/Extensions/SocketMMI/meta/Makefile
194 lib/python/Plugins/Extensions/SocketMMI/src/Makefile
195 lib/python/Plugins/Extensions/TuxboxPlugins/Makefile
196 lib/python/Plugins/Extensions/TuxboxPlugins/meta/Makefile
197 lib/python/Plugins/SystemPlugins/CleanupWizard/Makefile
198 lib/python/Plugins/SystemPlugins/CleanupWizard/meta/Makefile
199 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/Makefile
200 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/meta/Makefile
201 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/Makefile
202 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/meta/Makefile
203 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/Makefile
204 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/meta/Makefile
205 lib/python/Plugins/SystemPlugins/DiseqcTester/Makefile
206 lib/python/Plugins/SystemPlugins/DiseqcTester/meta/Makefile
207 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/Makefile
208 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/meta/Makefile
209 lib/python/Plugins/SystemPlugins/Hotplug/Makefile
210 lib/python/Plugins/SystemPlugins/Hotplug/meta/Makefile
211 lib/python/Plugins/SystemPlugins/Makefile
212 lib/python/Plugins/SystemPlugins/TempFanControl/Makefile
213 lib/python/Plugins/SystemPlugins/TempFanControl/meta/Makefile
214 lib/python/Plugins/SystemPlugins/NetworkWizard/Makefile
215 lib/python/Plugins/SystemPlugins/NetworkWizard/meta/Makefile
216 lib/python/Plugins/SystemPlugins/NFIFlash/Makefile
217 lib/python/Plugins/SystemPlugins/NFIFlash/meta/Makefile
218 lib/python/Plugins/SystemPlugins/PositionerSetup/Makefile
219 lib/python/Plugins/SystemPlugins/PositionerSetup/meta/Makefile
220 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/Makefile
221 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/meta/Makefile
222 lib/python/Plugins/SystemPlugins/Satfinder/Makefile
223 lib/python/Plugins/SystemPlugins/Satfinder/meta/Makefile
224 lib/python/Plugins/SystemPlugins/SkinSelector/Makefile
225 lib/python/Plugins/SystemPlugins/SkinSelector/meta/Makefile
226 lib/python/Plugins/SystemPlugins/SoftwareManager/Makefile
227 lib/python/Plugins/SystemPlugins/SoftwareManager/meta/Makefile
228 lib/python/Plugins/SystemPlugins/VideoEnhancement/Makefile
229 lib/python/Plugins/SystemPlugins/VideoEnhancement/meta/Makefile
230 lib/python/Plugins/SystemPlugins/VideoTune/Makefile
231 lib/python/Plugins/SystemPlugins/VideoTune/meta/Makefile
232 lib/python/Plugins/SystemPlugins/Videomode/Makefile
233 lib/python/Plugins/SystemPlugins/Videomode/meta/Makefile
234 lib/python/Plugins/SystemPlugins/WirelessLan/Makefile
235 lib/python/Plugins/SystemPlugins/WirelessLan/meta/Makefile
236 lib/python/Tools/Makefile
238 lib/components/Makefile