5b3082ec7feadfbe7049a6f8b68ae4e4aa3e0bb3
[vuplus_dvbapp] / configure.ac
1 AC_INIT([enigma2],[2.8.0],[enigma2-devel@lists.elitedvb.net])
2 AM_INIT_AUTOMAKE([dist-bzip2 no-define tar-pax])
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])
20 AC_PATH_PROG(MSGINIT,[msginit])
21 AC_PATH_PROG(MSGMERGE,[msgmerge])
22 AC_PATH_PROG(MSGUNIQ,[msguniq])
23 AC_PATH_PROG(XGETTEXT,[xgettext])
24 if test -z "$MSGFMT" -o -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$XGETTEXT"; then
25         AC_MSG_ERROR([Could not find required gettext tools])
26 fi
27
28 AM_PATH_PYTHON
29 AX_PYTHON_DEVEL
30 AX_PKG_SWIG
31 AX_SWIG_ENABLE_CXX
32 AX_SWIG_PYTHON
33 AX_PTHREAD
34
35 TUXBOX_APPS_DVB
36
37 AM_CONDITIONAL(HAVE_GIT_DIR, test -d "$srcdir/.git")
38 AM_CONDITIONAL(HAVE_FAKE_GIT_DIR, test -f "$srcdir/.git/last_commit_info")
39
40 PKG_CHECK_MODULES(BASE, [freetype2 fribidi gstreamer-0.10 gstreamer-pbutils-0.10 libdvbsi++ libpng libxml-2.0 sigc++-1.2])
41 PKG_CHECK_MODULES(LIBDDVD, libdreamdvd, HAVE_LIBDDVD="yes", HAVE_LIBDDVD="no")
42 AM_CONDITIONAL(HAVE_LIBDDVD, test "$HAVE_LIBDDVD" = "yes")
43
44 AC_CHECK_LIB([dl], [dlopen], [LIBDL_LIBS="-ldl"], [AC_MSG_ERROR([Could not find libdl])])
45 AC_SUBST(LIBDL_LIBS)
46 AC_CHECK_LIB([jpeg], [jpeg_set_defaults], [LIBJPEG_LIBS="-ljpeg"], [AC_MSG_ERROR([Could not find libjpeg])])
47 AC_SUBST(LIBJPEG_LIBS)
48 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])])])
49 AC_SUBST(LIBGIF_LIBS)
50
51 AC_LANG_PUSH([C++])
52 AC_CHECK_LIB([xmlccwrap], [exit], [LIBXMLCCWRAP_LIBS="-lxmlccwrap"], [AC_MSG_ERROR([Could not find libxmlccwrap])])
53 AC_SUBST(LIBXMLCCWRAP_LIBS)
54 AC_LANG_POP
55
56 AC_ARG_WITH(libsdl,
57         AS_HELP_STRING([--with-libsdl],[use libsdl, yes or no]),
58         [with_libsdl=$withval],[with_libsdl=no])
59 if test "$with_libsdl" = "yes"; then
60         PKG_CHECK_MODULES(LIBSDL, sdl)
61 fi
62 AM_CONDITIONAL(HAVE_LIBSDL, test "$with_libsdl" = "yes")
63
64 AC_ARG_WITH(libxine,
65         AS_HELP_STRING([--with-libxine],[use libxine, yes or no]),
66         [with_libxine=$withval],[with_libxine=no])
67 if test "$with_libxine" = "yes"; then
68         PKG_CHECK_MODULES(LIBXINE, libxine)
69         AC_DEFINE([WITH_XINE],[1],[Define to 1 if you have libxine])
70 fi
71 AM_CONDITIONAL(HAVE_LIBXINE, test "$with_libxine" = "yes")
72
73 AC_ARG_WITH(debug,
74         AS_HELP_STRING([--without-debug],[disable debugging code]),
75         [with_debug="$withval"],[with_debug="yes"])
76 if test "$with_debug" = "yes"; then
77         DEBUG_CFLAGS="-ggdb3"
78         AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code])
79 fi
80
81 AC_ARG_WITH(memcheck,
82         AS_HELP_STRING([--with-memcheck],[enable memory leak checks]),
83         [with_memcheck="$withval"],[with_memcheck="no"])
84 if test "$with_memcheck" = "yes"; then
85         AC_DEFINE([MEMLEAK_CHECK],[1],[Define to 1 to enable memory leak checks])
86 fi
87
88 AC_ARG_WITH(po,
89         AS_HELP_STRING([--without-po],[disable updating of po files]),
90         [with_po="$withval"],[with_po="yes"])
91 AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
92
93 CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS"
94 CXXFLAGS="$CXXFLAGS $BASE_CFLAGS $PTHREAD_CFLAGS $DEBUG_CFLAGS -fno-rtti -fno-exceptions -Wall"
95
96 AC_CONFIG_FILES([
97 Makefile
98 data/Makefile
99 data/fonts/Makefile
100 data/countries/Makefile
101 data/defaults/Makefile
102 data/defaults/Dream/Makefile
103 data/defaults/Dream/hdbouquets/Makefile
104 data/defaults/Dream/sdbouquets/Makefile
105 data/extensions/Makefile
106 data/keymaps/Makefile
107 data/skin_default/Makefile
108 data/skin_default/menu/Makefile
109 data/skin_default/icons/Makefile
110 data/skin_default/buttons/Makefile
111 data/skin_default/spinner/Makefile
112 include/Makefile
113 lib/Makefile
114 lib/actions/Makefile
115 lib/base/Makefile
116 lib/base/eenv.cpp
117 lib/driver/Makefile
118 lib/dvb/Makefile
119 lib/dvb/lowlevel/Makefile
120 lib/dvb_ci/Makefile
121 lib/gdi/Makefile
122 lib/gui/Makefile
123 lib/mmi/Makefile
124 lib/nav/Makefile
125 lib/python/Makefile
126 lib/python/Components/Makefile
127 lib/python/Components/Converter/Makefile
128 lib/python/Components/Renderer/Makefile
129 lib/python/Components/Sources/Makefile
130 lib/python/Screens/Makefile
131 lib/python/Plugins/Makefile
132 lib/python/Plugins/DemoPlugins/Makefile
133 lib/python/Plugins/DemoPlugins/TPMDemo/Makefile
134 lib/python/Plugins/DemoPlugins/TestPlugin/Makefile
135 lib/python/Plugins/Extensions/CutListEditor/Makefile
136 lib/python/Plugins/Extensions/CutListEditor/meta/Makefile
137 lib/python/Plugins/Extensions/DVDBurn/Makefile
138 lib/python/Plugins/Extensions/DVDBurn/meta/Makefile
139 lib/python/Plugins/Extensions/DVDPlayer/Makefile
140 lib/python/Plugins/Extensions/DVDPlayer/meta/Makefile
141 lib/python/Plugins/Extensions/DVDPlayer/src/Makefile
142 lib/python/Plugins/Extensions/GraphMultiEPG/Makefile
143 lib/python/Plugins/Extensions/GraphMultiEPG/meta/Makefile
144 lib/python/Plugins/Extensions/Makefile
145 lib/python/Plugins/Extensions/MediaPlayer/Makefile
146 lib/python/Plugins/Extensions/MediaPlayer/meta/Makefile
147 lib/python/Plugins/Extensions/MediaScanner/Makefile
148 lib/python/Plugins/Extensions/MediaScanner/meta/Makefile
149 lib/python/Plugins/Extensions/Modem/Makefile
150 lib/python/Plugins/Extensions/PicturePlayer/Makefile
151 lib/python/Plugins/Extensions/PicturePlayer/meta/Makefile
152 lib/python/Plugins/Extensions/PicturePlayer/data/Makefile
153 lib/python/Plugins/Extensions/SocketMMI/Makefile
154 lib/python/Plugins/Extensions/SocketMMI/meta/Makefile
155 lib/python/Plugins/Extensions/SocketMMI/src/Makefile
156 lib/python/Plugins/Extensions/TuxboxPlugins/Makefile
157 lib/python/Plugins/Extensions/TuxboxPlugins/meta/Makefile
158 lib/python/Plugins/SystemPlugins/CleanupWizard/Makefile
159 lib/python/Plugins/SystemPlugins/CleanupWizard/meta/Makefile
160 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/Makefile
161 lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/meta/Makefile
162 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/Makefile
163 lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/meta/Makefile
164 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/Makefile
165 lib/python/Plugins/SystemPlugins/DefaultServicesScanner/meta/Makefile
166 lib/python/Plugins/SystemPlugins/DiseqcTester/Makefile
167 lib/python/Plugins/SystemPlugins/DiseqcTester/meta/Makefile
168 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/Makefile
169 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/meta/Makefile
170 lib/python/Plugins/SystemPlugins/Hotplug/Makefile
171 lib/python/Plugins/SystemPlugins/Hotplug/meta/Makefile
172 lib/python/Plugins/SystemPlugins/Makefile
173 lib/python/Plugins/SystemPlugins/TempFanControl/Makefile
174 lib/python/Plugins/SystemPlugins/TempFanControl/meta/Makefile
175 lib/python/Plugins/SystemPlugins/NetworkWizard/Makefile
176 lib/python/Plugins/SystemPlugins/NetworkWizard/meta/Makefile
177 lib/python/Plugins/SystemPlugins/NFIFlash/Makefile
178 lib/python/Plugins/SystemPlugins/NFIFlash/meta/Makefile
179 lib/python/Plugins/SystemPlugins/PositionerSetup/Makefile
180 lib/python/Plugins/SystemPlugins/PositionerSetup/meta/Makefile
181 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/Makefile
182 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/meta/Makefile
183 lib/python/Plugins/SystemPlugins/Satfinder/Makefile
184 lib/python/Plugins/SystemPlugins/Satfinder/meta/Makefile
185 lib/python/Plugins/SystemPlugins/SkinSelector/Makefile
186 lib/python/Plugins/SystemPlugins/SkinSelector/meta/Makefile
187 lib/python/Plugins/SystemPlugins/SoftwareManager/Makefile
188 lib/python/Plugins/SystemPlugins/SoftwareManager/meta/Makefile
189 lib/python/Plugins/SystemPlugins/VideoEnhancement/Makefile
190 lib/python/Plugins/SystemPlugins/VideoEnhancement/meta/Makefile
191 lib/python/Plugins/SystemPlugins/VideoTune/Makefile
192 lib/python/Plugins/SystemPlugins/VideoTune/meta/Makefile
193 lib/python/Plugins/SystemPlugins/Videomode/Makefile
194 lib/python/Plugins/SystemPlugins/Videomode/meta/Makefile
195 lib/python/Plugins/SystemPlugins/WirelessLan/Makefile
196 lib/python/Plugins/SystemPlugins/WirelessLan/meta/Makefile
197 lib/python/Tools/Makefile
198 lib/service/Makefile
199 lib/components/Makefile
200 po/Makefile
201 main/Makefile
202 tools/Makefile
203 tools/enigma2.sh
204 enigma2.pc
205 ])
206 AC_OUTPUT