use eDebug
[enigma2.git] / configure.ac
1 AC_INIT(enigma2,2.4)
2 AM_INIT_AUTOMAKE(enigma2,2.4)
3
4 TUXBOX_APPS
5 TUXBOX_APPS_DIRECTORY
6
7 AC_PROG_CC
8 AC_PROG_CXX
9 AC_PROG_RANLIB
10
11 AC_ARG_WITH(libsdl,
12         AC_HELP_STRING([--with-libsdl], [use sdl, yes or no]),
13         [[withsdl=$withval]],
14         [[withsdl=yes]]
15 )
16
17 AC_CHECK_HEADER(dreamdvd/ddvdlib.h,have_ddvdlib="yes",have_ddvdlib="no")
18 if test x"${have_ddvdlib}" = xyes ; then
19         AC_DEFINE(HAVE_DDVDLIB, 1,[Define if ddvdlib is available])
20 else
21         AC_MSG_NOTICE([ddvdlib not found... dont build dvd plugin])
22 fi
23 AM_CONDITIONAL(HAVE_DDVDLIB, test "$have_ddvdlib" = "yes")
24
25 AM_PATH_PYTHON()
26 AC_PYTHON_DEVEL
27 #AM_PATH_XINE(1.1.0,, AC_MSG_ERROR([*** Please install xine-lib (devel) first ***]))
28
29 TUXBOX_APPS_DVB
30
31 _TUXBOX_APPS_LIB_PKGCONFIG_OPTIONAL(FREETYPE, freetype2, HAVE_FREETYPE2)
32 if test "$HAVE_FREETYPE2" = "no" ; then
33         TUXBOX_APPS_LIB_CONFIG(FREETYPE, freetype-config)
34 fi
35 TUXBOX_APPS_LIB_PKGCONFIG(FRIBIDI,fribidi)
36 TUXBOX_APPS_LIB_PKGCONFIG(ID3TAG,id3tag)
37 TUXBOX_APPS_LIB_PKGCONFIG(MAD,mad)
38 #TUXBOX_APPS_LIB_PKGCONFIG(PLUGINS,tuxbox-plugins)
39 TUXBOX_APPS_LIB_PKGCONFIG(PNG,libpng)
40 TUXBOX_APPS_LIB_PKGCONFIG(SIGC,sigc++-1.2)
41 TUXBOX_APPS_LIB_PKGCONFIG(DVBSI,libdvbsi++)
42 _TUXBOX_APPS_LIB_PKGCONFIG_OPTIONAL(GSTREAMER,gstreamer,HAVE_GSTREAMER)
43 AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
44 JPEG_LIBS="-ljpeg"
45 AC_SUBST(JPEG_LIBS)
46
47 AC_CHECK_LIB(ungif, DGifOpenFileName, HAVE_LIBUNGIF="yes", HAVE_LIBUNGIF="no")
48 LIBUNGIF_LIBS="-lungif"
49 AC_SUBST(LIBUNGIF_LIBS)
50
51 TUXBOX_APPS_LIB_PKGCONFIG(XML2,libxml-2.0)
52
53 # ok, we are in trouble: XMLCCWRAP only defines C++ symbols. So let's just check if linking works,
54 # and assume everything will be ok. Then just check for the "exit" symbol, which should be always there.
55 TUXBOX_APPS_LIB_SYMBOL(XMLCCWRAP, xmlccwrap, exit)
56
57 if test "$withsdl" = "yes" ; then
58         _TUXBOX_APPS_LIB_PKGCONFIG_OPTIONAL(SDL,sdl,WITH_SDL)
59         if test "$WITH_SDL" = "no" ; then
60                 TUXBOX_APPS_LIB_CONFIG(SDL,sdl-config)
61                 AC_DEFINE_UNQUOTED([WITH_SDL],[$withsdl],[With SDL])
62         fi
63 fi
64 # allow 'if WITH_SDL' conditionals in Makefile.am
65 AM_CONDITIONAL(WITH_SDL, test "$WITH_SDL" = "yes")
66
67 CPPFLAGS="$CPPFLAGS "'-I$(top_srcdir)'
68 CPPFLAGS="$CPPFLAGS -D_REENTRANT $PYTHON_CPPFLAGS $MD5SUM_CFLAGS $FREETYPE_CFLAGS $FRIBIDI_CFLAGS $ID3TAG_CFLAGS $MAD_CFLAGS $PLUGINS_CFLAGS $PNG_CFLAGS $SDL_CFLAGS $SIGC_CFLAGS $XMLTREE_CFLAGS $DVBSI_CFLAGS $GSTREAMER_CFLAGS $LIBUNGIF_CLFAGS"
69 #CPPFLAGS="$CPPFLAGS -DMEMLEAK_CHECK"
70 CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions -Wall"
71 LDFLAGS="$LDFLAGS -pthread $PYTHON_LDFLAGS $SDL_LDFLAGS $GSTREAMER_LDFLAGS $LIBUNGIF_LDFLAGS"
72 #LDFLAGS="-rdynamic $LDFLAGS"
73
74 TUXBOX_APPS_GETTEXT
75
76 AC_OUTPUT([
77 Makefile
78 data/Makefile
79 data/fonts/Makefile
80 data/countries/Makefile
81 data/defaults/Makefile
82 data/defaults/Dream/Makefile
83 data/extensions/Makefile
84 data/skin_default/Makefile
85 data/skin_default/menu/Makefile
86 data/skin_default/icons/Makefile
87 data/skin_default/buttons/Makefile
88 data/skin_default/spinner/Makefile
89 lib/Makefile
90 lib/actions/Makefile
91 lib/base/Makefile
92 lib/driver/Makefile
93 lib/dvb/Makefile
94 lib/dvb_ci/Makefile
95 lib/gdi/Makefile
96 lib/gui/Makefile
97 lib/mmi/Makefile
98 lib/nav/Makefile
99 lib/python/Makefile
100 lib/python/Components/Makefile
101 lib/python/Components/Converter/Makefile
102 lib/python/Components/Renderer/Makefile
103 lib/python/Components/Sources/Makefile
104 lib/python/Screens/Makefile
105 lib/python/Plugins/Makefile
106 lib/python/Plugins/SystemPlugins/Makefile
107 lib/python/Plugins/SystemPlugins/SoftwareUpdate/Makefile
108 lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/Makefile
109 lib/python/Plugins/SystemPlugins/PositionerSetup/Makefile
110 lib/python/Plugins/SystemPlugins/Hotplug/Makefile
111 lib/python/Plugins/SystemPlugins/ConfigurationBackup/Makefile
112 lib/python/Plugins/SystemPlugins/Satfinder/Makefile
113 lib/python/Plugins/SystemPlugins/SkinSelector/Makefile
114 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/Makefile
115 lib/python/Plugins/SystemPlugins/Videomode/Makefile
116 lib/python/Plugins/SystemPlugins/VideoTune/Makefile
117 lib/python/Plugins/DemoPlugins/Makefile
118 lib/python/Plugins/DemoPlugins/TestPlugin/Makefile
119 lib/python/Plugins/Extensions/Makefile
120 lib/python/Plugins/Extensions/IpkgInstaller/Makefile
121 lib/python/Plugins/Extensions/TuxboxPlugins/Makefile
122 lib/python/Plugins/Extensions/FileManager/Makefile
123 lib/python/Plugins/Extensions/CutListEditor/Makefile
124 lib/python/Plugins/Extensions/MediaScanner/Makefile
125 lib/python/Plugins/Extensions/MediaPlayer/Makefile
126 lib/python/Plugins/Extensions/DVDPlayer/Makefile
127 lib/python/Plugins/Extensions/DVDPlayer/src/Makefile
128 lib/python/Plugins/Extensions/PicturePlayer/Makefile
129 lib/python/Plugins/Extensions/PicturePlayer/data/Makefile
130 lib/python/Plugins/Extensions/GraphMultiEPG/Makefile
131 lib/python/Plugins/Extensions/SocketMMI/Makefile
132 lib/python/Tools/Makefile
133 lib/service/Makefile
134 lib/components/Makefile
135 po/Makefile
136 main/Makefile
137 tools/Makefile
138 enigma2.pc
139 ])
140
141 #lib/python/Plugins/Extensions/SimpleRSS/Makefile