Fix:vehicle_demo:Made vehicle_demo use event system
[navit-package] / configure.in
1 AC_INIT(navit, 0.1.0)
2 AM_INIT_AUTOMAKE
3 AM_CONFIG_HEADER(config.h)
4 AM_MAINTAINER_MODE
5
6
7 plugins=yes; plugins_reason=default
8 postgresql=yes; postgresql_reason=default
9 samplemap=yes; samplemap_reason=default
10 binding_dbus=yes; binding_dbus_reason=default
11 binding_python=yes; binding_python_reason=default
12 gui_gtk=no; gui_gtk_reason=default
13 gui_win32=no; gui_win32_reason=default
14 gui_internal=yes; gui_internal_reason=default
15 graphics_gtk_drawing_area=no; graphics_gtk_drawing_area_reason=default
16 graphics_qt_qpainter=yes; graphics_qt_qpainter_reason=default
17 graphics_win32=no; graphics_win32_reason=default
18 speech_cmdline=yes; speech_cmdline_reason=default
19 speech_speech_dispatcher=yes; speech_speech_dispatcher_reason=default
20 vehicle_demo=yes; vehicle_demo_reason=default
21 vehicle_file=yes; vehicle_file_reason=default
22 vehicle_gpsd=yes; vehicle_gpsd_reason=default
23 vehicle_gypsy=yes; vehicle_gypsy_reason=default
24
25 m4_ifndef([AC_USE_SYSTEM_EXTENSIONS],
26         [AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], [AC_GNU_SOURCE])])
27
28 AC_USE_SYSTEM_EXTENSIONS
29
30 AC_PROG_CC
31 if eval "test x$GCC = xyes"; then
32         CFLAGS="$CFLAGS -Wall -Wcast-align -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
33 fi
34 AM_PROG_CC_C_O
35
36 AC_PROG_CXX
37 if eval "test x$GXX = xyes"; then
38         CXXFLAGS="$CXXFLAGS -Wall -Wcast-align -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
39 fi
40
41 PKG_CHECK_EXISTS
42 if test "x${cross_compiling}" = "xyes"; then
43         samplemap="no";samplemap_reason="not supported for cross compiling"
44         binding_python="no";binding_python_reason="not supported for cross compiling"
45         postgresql="no";postgresql_reason="not supported for cross compiling"
46         AC_MSG_CHECKING([for a C compiler for build tools])
47         AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
48 else
49         CC_FOR_BUILD=$CC
50 fi
51 CCLD_FOR_BUILD="$CC_FOR_BUILD"
52 AC_SUBST(cross_compiling)
53 AC_SUBST(CC_FOR_BUILD)
54 AC_SUBST(CCLD_FOR_BUILD)
55
56 AC_ARG_ENABLE(avoid-unaligned, [  --enable-avoid-unaligned          avoid unaligned accesses], AVOID_UNALIGNED=$enableval, AVOID_UNALIGNED=no)
57 test x"${AVOID_UNALIGNED}" = xyes && AC_DEFINE(AVOID_UNALIGNED,[],Define to avoid unaligned access)
58
59 AC_ARG_ENABLE(avoid-float, [  --enable-avoid-float              avoid floating point calculations], AVOID_FLOAT=$enableval, AVOID_FLOAT=no)
60 test x"${AVOID_FLOAT}" = xyes && AC_DEFINE(AVOID_FLOAT,[],Define to avoid floating point)
61
62 AC_ARG_ENABLE(hildon, [  --enable-hildon              build with maemo/hildon support], enable_hildon=$enableval, enable_hildon=no)
63 if test "x${enable_hildon}" = "xyes" ; then
64         PKG_CHECK_MODULES(enable_hildon, hildon-libs >= 0.12.24, , [
65                 AC_MSG_RESULT(no)
66                 enable_hildon=no
67         ])
68         if test x"${enable_hildon}" = xyes ; then
69                 AC_DEFINE(USE_HILDON, 1, [Build with maemo/hildon support])
70                 AC_SUBST(HILDON_CFLAGS)
71                 AC_SUBST(HILDON_LIBS)
72         fi
73 fi
74 AM_CONDITIONAL(USE_HILDON, test "${enable_hildon}" = "xyes")
75
76 AC_ARG_ENABLE(garmin, [  --disable-garmin             disable garmin support], USE_GARMIN=$enableval, USE_GARMIN=yes)
77
78 # samplemap
79 AC_PATH_PROG(_PATH_BZCAT,[bzcat])
80 if test "x${_PATH_BZCAT}" = "x" ; then
81         samplemap=no; samplemap_reason="bzcat missing"
82 fi
83 AC_ARG_ENABLE(samplemap, [  --disable-samplemap             don't build the samplemap], samplemap=$enableval;samplemap_reason="configure parameter")
84 AM_CONDITIONAL(BUILD_SAMPLEMAP, [test "x$samplemap" = "xyes"])
85
86 AC_ARG_ENABLE(fastmath, [  --disable-fastmath             don't build with fastmath], fastmath=$enableval, fastmath=yes)
87 AM_CONDITIONAL(FASTMATH, [test "x$fastmath" = "xyes"])
88
89 if test x"$fastmath" = xyes; then
90         if eval "test x$GCC = xyes"; then
91                 CFLAGS="$CFLAGS -ffast-math"
92         fi
93 fi
94
95 X_CFLAGS="-I$x_includes"
96 AS_IF([test -n "$ac_x_libraries"], [X_LIBS="-L$ac_x_libraries"])
97
98 PKG_CHECK_MODULES(GLIB, [glib-2.0 gthread-2.0], [glib=yes],[glib=no])
99 if test "x${glib}" = "xyes"; then
100         AC_DEFINE(HAVE_GLIB, 1, [Define to 1 if you have (external) glib library])
101 else
102         GLIB_CFLAGS="-I\$(top_srcdir)/navit/support -I\$(top_srcdir)/navit/support/glib -I\$(top_srcdir)/navit/support/ezxml"
103         GLIB_LIBS="-L\$(top_builddir)/navit/support/glib -lsupport_glib -L\$(top_builddir)/navit/support/ezxml -lsupport_ezxml"
104         vehicle_file=no; vehicle_file_reason="not yet supported without glib"
105 fi
106
107 # gmodule
108 PKG_CHECK_MODULES(GMODULE, [gmodule-2.0], [gmodule=yes], [gmodule=no])
109 if test "x${gmodule}" = "xyes"; then
110         AC_DEFINE(HAVE_GMODULE, 1, [Define to 1 if you have gmodule])
111 else
112         AC_CHECK_LIB(dl, dlopen,
113                 [plugins_reason="default, via dlopen";GMODULE_LIBS="-ldl";AC_DEFINE(HAVE_DLOPEN, 1, [Define to 1 if you have dlopen])],          
114                 [plugins="no"; plugins_reason="package gmodule and dlopen missing"]
115         )
116 fi
117 # plugins
118 AC_ARG_ENABLE(plugins,  [  --disable-plugins          disable plugins], [ plugins=$enableval;plugin_reason="configure parameter" ])
119 if test "x${plugins}" = "xyes"; then
120         AC_ENABLE_SHARED
121         AC_DISABLE_STATIC
122         AC_DEFINE(
123                 [USE_PLUGINS],
124                 [],
125                 Define to 1 if you have plugins.
126         )
127 else
128         AC_DISABLE_SHARED
129         AC_ENABLE_STATIC
130 fi
131 AM_CONDITIONAL(PLUGINS, [test "x$plugins" = "xyes"])
132 AC_PROG_LIBTOOL
133
134 AM_CONDITIONAL(EVENT_GLIB, [test "x$glib" = "xyes"])
135 AM_CONDITIONAL(SUPPORT_GLIB, [test "x$glib" = "xno"])
136 AM_CONDITIONAL(SUPPORT_EZXML, [test "x$glib" = "xno"])
137 AM_CONDITIONAL(DATA_POI_GEODOWNLOAD, [test "x$glib" = "xyes"])
138
139 AC_CHECK_HEADER(
140         zlib.h,
141         AC_DEFINE(
142                 [HAVE_ZLIB],
143                 [],
144                 Define to 1 if you have the <zlib.h> header file.
145         )
146         ZLIB_LIBS="-lz"
147         zlib=yes,
148         ZLIB_CFLAGS="-I\$(top_srcdir)/navit/support/zlib"
149         ZLIB_LIBS="-L\$(top_builddir)/navit/support/zlib -lsupport_zlib"
150         zlib=no
151 )
152 AM_CONDITIONAL(SUPPORT_ZLIB, [test "x$zlib" = "xno"])
153 AC_SUBST(ZLIB_CFLAGS)
154 AC_SUBST(ZLIB_LIBS)
155
156 # gtk
157 PKG_CHECK_MODULES(GTK2, [gtk+-2.0], [gtk2_pkgconfig=yes], [gtk2_pkgconfig=no])
158 if test "x$gtk2_pkgconfig" = "xyes"; then
159         AC_DEFINE(HAVE_GTK2, 1, [Define to 1 if you have gtk2])
160         graphics_gtk_drawing_area=yes; graphics_gtk_drawing_area_reason="gtk+-2.0 present"
161         gui_gtk=yes; gui_gtk_reason="gtk+-2.0 present"
162 fi
163
164 # fsync
165 AC_MSG_CHECKING(for fsync)
166 AC_TRY_LINK([#include <unistd.h>], [fsync(0);],AC_MSG_RESULT(yes);AC_DEFINE(HAVE_FSYNC, 1, [Define to 1 if you have the `fsync' function.]),AC_MSG_RESULT(no))
167
168 # system
169 AC_MSG_CHECKING(for system)
170 AC_TRY_LINK([#include <stdlib.h>], [system("/bin/true");],AC_MSG_RESULT(yes);AC_DEFINE(HAVE_SYSTEM, 1, [Define to 1 if you have the `system' function.]),speech_cmdline=no; speech_cmdline_reason="not supported without system()"; AC_MSG_RESULT(no))
171
172 AC_ARG_ENABLE(directfb, [  --enable-directfb             enable directfb gui and graphics], MODULE_DIRECTFB=$enableval, MODULE_DIRECTFB=no)
173
174 if test "x$MODULE_DIRECTFB" = "xyes"; then
175         PKG_CHECK_MODULES(DIRECTFB, [directfb], [directfb_pkgconfig=yes], [directfb_pkgconfig=no])
176         if test "x$directfb_pkgconfig" = "xyes"; then
177                 AC_DEFINE(HAVE_DIRECTFB, 1, [Define to 1 if you have directfb])
178         fi
179 fi
180
181 DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS"
182
183 #DIRECTFB_CFLAGS="-D_REENTRANT -I/data/oe/tmp/staging/arm-angstrom-linux-gnueabi/usr/include/directfb/"
184 #DIRECTFB_LIBS="-L/data/oe/tmp/staging/arm-angstrom-linux-gnueabi/usr/lib/ -ldirectfb -lfusion -ldirect -lpthread"
185
186 AC_SUBST(DIRECTFB_CFLAGS)
187 AC_SUBST(DIRECTFB_LIBS)
188 AM_CONDITIONAL(DIRECTFB, [test "x$directfb_pkgconfig" = "xyes"])
189
190
191 AC_ARG_ENABLE(graphics-sdl, [  --disable-graphics-sdl             don't create graphics sdl], enable_graphics_sdl=$enableval, enable_graphics_sdl=yes)
192 if test "x${enable_graphics_sdl}" = "xyes" ; then
193         if test -z "$SDL_CONFIG"; then
194             AC_PATH_PROG([SDL_CONFIG], [sdl-config], [])
195         fi
196 fi
197 if test "x${enable_graphics_sdl}" = "xyes" ; then
198         AC_MSG_CHECKING([for SDL libraries with $SDL_CONFIG])
199         if test ! -x "$SDL_CONFIG"; then
200             enable_graphics_sdl = "no"
201             AC_MSG_RESULT([no])
202         else
203             SDL_CFLAGS="`$SDL_CONFIG --cflags`"
204             SDL_LIBS="`$SDL_CONFIG --libs`"
205             AC_SUBST(SDL_CFLAGS)
206             AC_SUBST(SDL_LIBS)
207             AC_MSG_RESULT([yes])
208         fi 
209 fi
210 if test "x${enable_graphics_sdl}" = "xyes" ; then
211         save_CPPFLAGS=$CPPFLAGS
212         CPPFLAGS="$($SDL_CONFIG --cflags) $CPPFLAGS"
213         AC_CHECK_HEADER(SDL_image.h,SDL_IMAGE_LIBS=-lSDL_image,enable_graphics_sdl=no)
214         AC_SUBST(SDL_IMAGE_LIBS)
215         CPPFLAGS=$save_CPPFLAGS
216 fi
217 if test "x${enable_graphics_sdl}" = "xyes" ; then
218         AC_DEFINE(USE_GRAPICS_SDL, 1, [Build with graphics sdl])
219 fi
220 AM_CONDITIONAL(USE_GRAPHICS_SDL, test "x${enable_graphics_sdl}" = "xyes")
221
222 AC_ARG_ENABLE(postgresql, [  --disable-postgresql             don't add postgresql support to osm2navit], postgresql=$enableval;postgresql_reason="configure parameter")
223 if test "x${postgresql}" = "xyes" ; then
224         if test -z "$PG_CONFIG"; then
225             AC_PATH_PROG([PG_CONFIG], [pg_config], [])
226         fi
227         AC_MSG_CHECKING([for PostgreSQL libraries with $PG_CONFIG])
228         if test ! -x "$PG_CONFIG"; then
229             if test "x${PG_CONFIG}" = "x" ; then
230                  postgresql_reason="$PG_CONFIG not executable"
231             else
232                  postgresql_reason="pg_config missing"
233             fi
234             postgresql=no 
235             AC_MSG_RESULT([no])
236         else
237             POSTGRESQL_CFLAGS="-I`$PG_CONFIG --includedir`"
238             POSTGRESQL_LIBS="-L`$PG_CONFIG --libdir` -lpq"
239             AC_DEFINE(HAVE_POSTGRESQL, 1, [Postgresql libraries available])
240             AC_SUBST(POSTGRESQL_CFLAGS)
241             AC_SUBST(POSTGRESQL_LIBS)
242             AC_MSG_RESULT([yes])
243         fi 
244 fi
245 AM_CONDITIONAL(HAVE_POSTGRESQL, test "x${postgresql}" = "xyes")
246
247 PKG_CHECK_MODULES(FREETYPE2, [freetype2], [freetype2_pkgconfig=yes], [freetype2_pkgconfig=no])
248 if test "x$freetype2_pkgconfig" = "xyes"; then
249    AC_DEFINE(HAVE_FREETYPE2, 1, [Define to 1 if you have freetype2])
250 fi
251 AC_SUBST(FREETYPE2_CFLAGS)
252 AC_SUBST(FREETYPE2_LIBS)
253
254 PKG_CHECK_MODULES(FONTCONFIG, [fontconfig], [fontconfig_pkgconfig=yes], [fontconfig_pkgconfig=no])
255 if test "x$fontconfig_pkgconfig" = "xyes"; then
256    AC_DEFINE(HAVE_FONTCONFIG, 1, [Define to 1 if you have fontconfig])
257 fi
258 AC_SUBST(FONTCONFIG_CFLAGS)
259 AC_SUBST(FONTCONFIG_LIBS)
260
261 PKG_CHECK_MODULES(IMLIB2, [imlib2], [imlib2_pkgconfig=yes], [imlib2_pkgconfig=no])
262 if test "x$imlib2_pkgconfig" = "xyes"; then
263    AC_DEFINE(HAVE_IMLIB2, 1, [Define to 1 if you have imlib2])
264 fi
265 AC_SUBST(IMLIB2_CFLAGS)
266 AC_SUBST(IMLIB2_LIBS)
267
268
269
270 AC_ARG_ENABLE(gui-sdl, [  --disable-gui-sdl             don't create gui sdl ], MODULE_GUI_SDL=$enableval, MODULE_GUI_SDL=yes)
271 if test "x$MODULE_GUI_SDL" = "xyes"; then
272         AC_CHECK_HEADER(
273                 SDL/SDL.h,
274                 AC_DEFINE(
275                         [HAVE_LIBSDL],
276                         [],
277                         Define to 1 if you have the <SDL/SDL.h> header file.
278                         )
279                         SDL_LIBS="-lSDL"
280                         sdl=yes,
281                 AC_MSG_WARN([*** no SDL/SDL.h -- SDL support disabled])
282         )
283 fi
284
285 PKG_CHECK_MODULES(
286         [CEGUI],
287         [CEGUI-OPENGL >= 0.5.0],
288         [
289                 AC_DEFINE(
290                         [HAVE_CEGUI],
291                         [],
292                         [Define to 1 if you have the @<:@CEGUI/CEGUI.h@:>@ header file.])
293                 cegui=yes
294         ],
295         [AC_MSG_WARN([*** CEGUI not found -- SDL support disabled])]
296 )
297
298 AC_CHECK_HEADER(
299         X11/Xmu/Xmu.h,
300         AC_DEFINE(
301                 [HAVE_XMU],
302                 [],
303                 Define to 1 if you have the <X11/Xmu/Xmu.h> header file.
304                 )
305                 xmu=yes,
306         AC_MSG_WARN([*** no X11/Xmu/Xmu.h -- opengl and SDL support disabled])
307 )
308
309 AC_CHECK_HEADER(
310         GL/gl.h,
311         AC_DEFINE(
312                 [HAVE_OPENGL],
313                 [],
314                 Define to 1 if you have the <GL/gl.h> header file.
315                 )
316                 OPENGL_LIBS="$X_LIBS -lGL -lGLU"
317                 opengl=yes,
318         AC_MSG_WARN([*** no GL/gl.h -- opengl and SDL support disabled])
319 )
320
321 AC_CHECK_HEADER(
322         GL/glut.h,
323         AC_DEFINE(
324                 [HAVE_GLUT],
325                 [],
326                 Define to 1 if you have the <GL/glut.h> header file.
327                 )
328                 glut=yes,
329         AC_MSG_WARN([*** no GL/glut.h -- opengl and SDL support disabled])
330 )
331
332 AC_SUBST(OPENGL_CFLAGS)
333 AC_SUBST(OPENGL_LIBS)
334
335 AC_CHECK_HEADER(
336         GL/glc.h,
337         AC_DEFINE(
338                 [HAVE_GLC],
339                 [],
340                 Define to 1 if you have the <GL/glc.h> header file.
341                 )
342                 GLC_LIBS="-lGLC"
343                 glc=yes,
344         AC_MSG_WARN([*** no GL/glc.h -- opengl and SDL support disabled])
345 )
346 AC_SUBST(GLC_CFLAGS)
347 AC_SUBST(GLC_LIBS)
348
349 if test x"$cegui" = xyes         
350                 then     
351          # Save the LIBS into a temp var since AC_CHECK_LIB adds the lib into LIBS       
352          # and we want just to check and use CEGUI_LIBS          
353          libstemp="$LIBS"        
354          # For CEGUI, we have to check the presence of some libraries.   
355          # The following are mandatory (used by navit)   
356          # If the user installed NavIt without, issue a warning and disable CEGUI        
357          AC_CHECK_LIB(CEGUIBase, main,   
358                   [],    
359                   [      
360                  echo "Error! Something is wrong with CEGUIBase. Do you have at least cegui-0.5?"        
361                  ])      
362          AC_CHECK_LIB(CEGUIOpenGLRenderer, main,         
363                   [],    
364                   [      
365                  echo "Error! Something is wrong with CEGUIOpenGLRenderer. Do you have at least cegui-0.5? "     
366                  ], $OPENGL_LIBS )       
367          AC_CHECK_LIB(CEGUIFalagardWRBase, main,         
368                   [],    
369                   [      
370                  echo "Error! Something is wrong with CEGUIFalagardWRBase. Do you have at least cegui-0.5?"      
371                  ], $OPENGL_LIBS)        
372          CEGUI_LIBS="-lCEGUIBase -lCEGUIOpenGLRenderer -lCEGUIFalagardWRBase"    
373                  
374          # The following are optional, but we need to link against them if cegui was built with them     
375          AC_CHECK_LIB(CEGUIXercesParser, main,   
376                   [CEGUI_LIBS="$CEGUI_LIBS -lCEGUIXercesParser"],        
377                   [echo "CEGUIXercesParser not found/not working, disabled."],   
378                   $OPENGL_LIBS   
379          )       
380                  
381          AC_CHECK_LIB(CEGUIExpatParser, main,    
382                   [CEGUI_LIBS="$CEGUI_LIBS -lCEGUIExpatParser"],         
383                   [echo "CEGUIExpatParser not found/not working, disabled."],    
384                   $OPENGL_LIBS   
385          )       
386                  
387          AC_CHECK_LIB(CEGUILibxmlParser, main,   
388                   [CEGUI_LIBS="$CEGUI_LIBS -lCEGUILibxmlParser"],        
389                   [echo "CEGUILibxmlParser not found/not working, disabled."],   
390                   $OPENGL_LIBS   
391          )       
392                  
393          AC_CHECK_LIB(CEGUITinyXMLParser, main,          
394                   [CEGUI_LIBS="$CEGUI_LIBS -lCEGUITinyXMLParser"],       
395                   [echo "CEGUITinyXMLParser not found/not working, disabled."],          
396                   $OPENGL_LIBS   
397          )       
398                  
399          AC_CHECK_LIB(CEGUIDevILImageCodec, main,        
400                   [
401                         CEGUI_LIBS="$CEGUI_LIBS -lCEGUIDevILImageCodec"
402                          AC_DEFINE([HAVE_LIBCEGUIDEVILIMAGECODEC],[1],Define to 1 to use DevIL codec)
403                   ],
404                   [echo "CEGUIDevILImageCodec not found/not working, disabled."],        
405                   $OPENGL_LIBS   
406          )       
407                  
408          AC_CHECK_LIB(CEGUITGAImageCodec, createImageCodec,      
409                   [
410                           CEGUI_LIBS="$CEGUI_LIBS -lCEGUITGAImageCodec"
411                           AC_DEFINE(HAVE_LIBCEGUITGAIMAGECODEC,[1],Define to 1 to use the TGA codec)
412                   ],
413                   [echo "GUITGAImageCodec not found/not working, disabled."],    
414                   $OPENGL_LIBS   
415          )       
416                  
417          libssilly="$OPENGL_LIBS -lpng"          
418          AC_CHECK_LIB(CEGUISILLYImageCodec, createImageCodec,    
419                   [
420                          CEGUI_LIBS="$CEGUI_LIBS -lCEGUISILLYImageCodec"
421                          AC_DEFINE([HAVE_LIBCEGUISILLYIMAGECODEC],[1],Define to 1 to use SILLY codec)
422                   ],
423                   [echo "CEGUISILLYImageCodec not found/not working, disabled."],        
424                   $libssilly     
425          )       
426          # Restore the libs
427          LIBS="$libstemp"        
428          echo "CEGUI_LIBS : $CEGUI_LIBS"         
429          fi
430
431 AC_SUBST(CEGUI_CFLAGS)
432 AC_SUBST(CEGUI_LIBS)
433
434 AM_CONDITIONAL(GUI_SDL, [test "x$sdl" = "xyes" -a "x$cegui" = "xyes" -a "x$opengl" = "xyes" -a "x$glc" = "xyes" -a "x$xmu" = "xyes" ])
435 AM_CONDITIONAL(GRAPHICS_OPENGL, [test "x$opengl" = "xyes" -a "x$glc" = "xyes" ])
436
437 AC_ARG_ENABLE(gui-clutter, [  --disable-gui-clutter             don't create gui clutter ], MODULE_GUI_CLUTTER=$enableval, MODULE_GUI_CLUTTER=yes)
438 if test "x$MODULE_GUI_CLUTTER" = "xyes"; then
439         PKG_CHECK_MODULES(CLUTTER, [clutter-0.8], [clutter_pkgconfig=yes], [clutter_pkgconfig=no])
440         if test "x$clutter_pkgconfig" = "xyes"; then
441                 AC_DEFINE(HAVE_CLUTTER, 1, [Define to 1 if you have clutter])
442         fi
443 fi
444
445 AC_SUBST(CLUTTER_CFLAGS)
446 AC_SUBST(CLUTTER_LIBS)
447 AM_CONDITIONAL(GUI_CLUTTER, [test "x$clutter_pkgconfig" = "xyes" -a "x$glc" = "xyes" ])
448         
449
450
451
452 if test x"${USE_GARMIN}" = xyes
453 then
454         # check for libgarmin
455         PKG_CHECK_MODULES(LIBGARMIN, libgarmin, use_libgarmin=yes, use_libgarmin=no)
456         AC_SUBST(LIBGARMIN_CFLAGS)
457         AC_SUBST(LIBGARMIN_LIBS)
458 fi
459         AM_CONDITIONAL(HAVELIBGARMIN, [test "x$use_libgarmin" = "xyes"])
460
461 ## binding
462 # python
463 AC_ARG_ENABLE(binding-python, [  --disable-binding-python             don't create binding python], binding_python=$enableval;binding_python_reason="configure parameter")
464 if test "x${binding_python}" = "xyes"; then
465         AC_PATH_PROG(_PATH_PYTHON,[python])
466         dnl Libraries and flags for embedded Python.
467         dnl FIXME: I wish there was a less icky way to get this.
468         if test "x${_PATH_PYTHON}" != "x" ; then
469                 AC_MSG_CHECKING(for Python linkage)
470                 py_prefix=`$_PATH_PYTHON -c 'import sys; print sys.prefix'`
471                 py_ver=`$_PATH_PYTHON -c 'import sys; print sys.version[[:3]]'`
472                 py_libdir="${py_prefix}/lib/python${py_ver}"
473                 PYTHON_CFLAGS="-I${py_prefix}/include/python${py_ver}"
474                 if test -f $py_libdir/config/Makefile -a -f $py_prefix/include/python${py_ver}/Python.h; then
475                         py_libs=`grep '^LIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
476                         py_libc=`grep '^LIBC=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
477                         py_libm=`grep '^LIBM=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
478                         py_liblocalmod=`grep '^LOCALMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
479                         py_libbasemod=`grep '^BASEMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
480                         PYTHON_LIBS="-L$py_libdir/config $py_libs $py_libc $py_libm -lpython$py_ver $py_liblocalmod $py_libbasemod"
481                         PYTHON_LIBS=`echo $PYTHON_LIBS | sed -e 's/[ \\t]*/ /g'`
482                         AC_MSG_RESULT($py_libdir)
483                 else
484                         binding_python="no"
485                         binding_python_reason="$py_libdir/config/Makefile or $py_prefix/include/python${py_ver}/Python.h missing"
486                 fi
487         else
488                 binding_python="no"
489                 binding_python_reason="python executable missing"
490         fi
491 fi
492 if test "x${binding_python}" = xyes ; then
493         AC_DEFINE(USE_BINDING_PYTHON, 1, [Build with binding python])
494 fi
495 AC_SUBST(PYTHON_CFLAGS)
496 AC_SUBST(PYTHON_LIBS)
497 AM_CONDITIONAL(BINDING_PYTHON, test "x${binding_python}" = "xyes")
498
499 # dbus
500 AC_ARG_ENABLE(binding-dbus,   [  --disable-binding-dbus               don't create binding dbus], binding_dbus=$enableval;binding_dbus_reason="configure parameter")
501 if test "x${binding_dbus}" = "xyes" ; then
502         PKG_CHECK_MODULES(DBUS, [dbus-glib-1], ,binding_dbus=no)
503 fi
504 if test "x${binding_dbus}" = "xyes" ; then
505         AC_DEFINE(USE_BINDING_DBUS, 1, [Build with binding dbus])
506 fi
507 AC_SUBST(DBUS_CFLAGS)
508 AC_SUBST(DBUS_LIBS)
509 AM_CONDITIONAL(BINDING_DBUS, test "x${binding_dbus}" = "xyes")
510
511 # svg
512 AC_ARG_ENABLE(svg, [  --disable-svg        disable Scalable Vector Graphics], enable_svg=$enableval, enable_svg=yes)
513 AC_ARG_ENABLE(svg2png, [  --disable-svg2png        disable conversion of svgs to pngs], enable_svg2png=$enableval, enable_svg2png=yes)
514 AC_ARG_ENABLE(svg2png_scaling, [  --enable-svg2png-scaling   enable conversion of svgs to pngs with specified sizes], SVG2PNG_SCALES=$enableval, SVG2PNG_SCALES="8 16 32 48 96")
515 if test "x${enable_svg2png}" = "xyes" ; then
516         AC_PATH_PROG([KSVGTOPNG], [ksvgtopng], [])
517         if test ! -x "$KSVGTOPNG"; then
518             enable_svg2png="no"
519         fi
520 fi
521 AC_SUBST(SVG2PNG_SCALES)
522 AM_CONDITIONAL(USE_SVG2PNG_SCALES, test "x${SVG2PNG_SCALES}" != "xyes" -a "x${SVG2PNG_SCALES}" != "x")
523 AM_CONDITIONAL(USE_SVG2PNG, test "x${enable_svg2png}" = "xyes")
524 AM_CONDITIONAL(USE_SVG, test "x${enable_svg}" = "xyes")
525
526 # NLS
527
528 AC_ARG_ENABLE(nls,
529   [  --disable-nls        disable Native Language Support ( gettext/libintl )],
530    enable_nls=$enableval, enable_nls=yes)
531
532
533 INTLIBS=""
534 MOFILES=""
535 POFILES=""
536 LINGUAS=""
537
538 if test x$enable_nls = xyes; then
539
540   AC_CHECK_FUNC(gettext, [HAVEGETTEXT="yes"], 
541              AC_CHECK_LIB(intl, gettext, [INTLIBS="-lintl" HAVEGETTEXT="yes"],
542                          INTLIBS="" ))
543
544   AC_CHECK_PROG(XGETTEXT, xgettext, xgettext)
545   AC_CHECK_PROG(MSGMERGE, msgmerge, msgmerge)
546   AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt)
547
548   if test "$XGETTEXT" != ""; then 
549     if $XGETTEXT --help 2>&1 | grep illegal >/dev/null ; then
550         echo "xgettext isn't GNU version"
551         XGETTEXT=""
552     fi
553   fi
554
555   if test "$XGETTEXT" != "" -a "$HAVEGETTEXT" != ""; then
556      PO=""
557      if test "$LINGUAS" = ""; then
558            ling=` (cd $srcdir/po; /bin/ls *.po.in) `
559            for l in $ling; do
560                 lcode=`basename $l .po.in`
561                 LINGUAS="$LINGUAS$lcode "
562            done
563     fi
564     AC_DEFINE(ENABLE_NLS, [1], [NLS Please])
565     echo "xgettext and gettext() exist; will build i18n support for $LINGUAS"
566   else
567    LINGUAS=""
568    PO=""
569    echo "xgettext and libintl.a don't both exist; will not build i18n support"
570  fi
571  for lang in $LINGUAS; do
572     MOFILES="$MOFILES $lang.mo"
573  done
574  for lang in $LINGUAS; do
575     POFILES="$POFILES $lang.po"
576  done
577 fi
578
579 AC_CHECK_HEADER(
580         byteswap.h,
581         AC_DEFINE(
582                 [HAVE_BYTESWAP_H],
583                 [1],
584                 [Define to 1 if you have byteswap.h],
585                 )
586                 ,
587 )
588
589 AC_SUBST(INTLIBS)
590 AC_SUBST(MOFILES)
591 AC_SUBST(POFILES)
592 AM_GNU_GETTEXT_VERSION
593 AM_GNU_GETTEXT
594
595 LIBS="$LIBS -lm -rdynamic"
596
597 PACKAGE=navit
598 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
599 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
600 AC_SUBST(PACKAGE)
601 AC_SUBST(VERSION)
602
603 AC_CHECK_HEADER(wordexp.h,wordexp_h=yes,wordexp_h=no;NAVIT_CFLAGS="$NAVIT_CFLAGS -I\$(top_srcdir)/navit/support/wordexp";NAVIT_LIBS="$NAVIT_LIBS -L\$(top_builddir)/navit/support/wordexp -lsupport_wordexp")
604 AM_CONDITIONAL(SUPPORT_WORDEXP, [test "x$wordexp_h" = "xno"])
605
606 AC_CANONICAL_HOST
607 win32=no
608 case $host_os in
609 wince)
610         win32=yes
611         AC_DEFINE(HAVE_API_WIN32_BASE, 1, [Have Windows Base API])
612         AC_DEFINE(HAVE_API_WIN32_CE, 1, [Have Windows CE API])
613         gui_win32=yes; gui_win32_reason="host_os is wince"
614         graphics_win32=yes; graphics_win32_reason="host_os is wince"
615         ;;
616 esac
617 if test "x$win32" = "xyes"
618 then
619         NAVIT_CFLAGS="$NAVIT_CFLAGS -I\$(top_srcdir)/navit/support/win32"
620         NAVIT_LIBS="$NAVIT_LIBS -L\$(top_builddir)/navit/support/win32 -lsupport_win32"
621 fi
622 AM_CONDITIONAL(SUPPORT_WIN32, [test "x$win32" = "xyes"])
623
624 ## graphics
625 # gtk_drawing_area
626 AC_ARG_ENABLE(graphics-gtk-drawing-area, [  --disable-graphics-gtk-drawing-area disable graphics type gtk_drawing_area], graphics_gtk_drawing_area=$enableval;graphics_gtk_drawing_area_reason="configure parameter")
627 AM_CONDITIONAL(GRAPHICS_GTK_DRAWING_AREA, [test "x${graphics_gtk_drawing_area}" = "xyes"])
628 # win32
629 AC_ARG_ENABLE(graphics-win32, [  --disable-graphics-win32            disable graphics type win32], graphics_win32=$enableval;graphics_win32_reason="configure parameter")
630 AM_CONDITIONAL(GRAPHICS_WIN32, test "x${graphics_win32}" = "xyes")
631 # qt_qpainter
632 AC_ARG_ENABLE(graphics-qt-qpainter, [  --disable-graphics-qt-qpainter      disable graphics type qt-qpainter], graphics_qt_qpainter=$enableval;graphics_qt_qpainter_reason="configure parameter")
633 if test "x${graphics_qt_qpainter}" = "xyes" -a "x${QT_GUI_CFLAGS}" = "x" -a "x${QT_GUI_LIBS}" = "x"; then
634         PKG_CHECK_MODULES(QT_GUI, [QtGui QtCore], ,graphics_qt_qpainter=no,graphics_qt_qpainter_reason="Packages QtGui and/or QtCore missing")
635 fi
636 if test "x${graphics_qt_qpainter}" = "xyes" ; then
637         AC_DEFINE(USE_GRAPICS_QT_QPAINTER, 1, [Build with graphics qt_qpainter])
638 fi
639 AC_SUBST(QT_GUI_CFLAGS)
640 AC_SUBST(QT_GUI_LIBS)
641 AM_CONDITIONAL(GRAPHICS_QT_QPAINTER, test "x${graphics_qt_qpainter}" = "xyes")
642
643 ## gui
644 # gtk
645 AC_ARG_ENABLE(gui-gtk, [  --disable-gui-gtk                   disable gui type gtk ], gui_gtk=$enableval)
646 AM_CONDITIONAL(GUI_GTK, [test "x${gui_gtk}" = "xyes"])
647 # internal
648 AC_ARG_ENABLE(gui-internal, [  --disable-gui-internal              disable gui type internal], gui_internal=$enableval;gui_internal_reason="configure parameter")
649 AM_CONDITIONAL(GUI_INTERNAL, test "x${gui_internal}" = "xyes")
650 # win32
651 AC_ARG_ENABLE(gui-win32, [  --disable-gui-win32                 disable gui type win32], gui_win32=$enableval;gui_win32_reason="configure parameter")
652 AM_CONDITIONAL(GUI_WIN32, test "x${gui_win32}" = "xyes")
653
654 ## speech
655 # cmdline
656 AC_ARG_ENABLE(speech-cmdline, [  --disable-speech-cmdline            disable speech type cmdline], speech_cmdline=$enableval;speech_cmdline_reason="configure parameter")
657 AM_CONDITIONAL(SPEECH_CMDLINE, test "x${speech_cmdline}" = "xyes")
658 # cmdline
659 AC_ARG_ENABLE(speech-speechd, [  --disable-speech-speech-dispatcher  disable speech type speech-dispatcher], speech_speech_dispatcher=$enableval;speech_speech_dispatcher_reason="configure parameter")
660 if test "x$speech_speech_dispatcher" = "xyes"; then
661         AC_CHECK_HEADER(libspeechd.h, AC_DEFINE([HAVE_LIBSPEECHD],[],Define to 1 if you have the <libspeechd.h> header file.) SPEECHD_LIBS="-lspeechd",  speech_speech_dispatcher=no; speech_speech_dispatcher_reason="libspeechd.h missing")
662 fi
663 AC_SUBST(SPEECHD_CFLAGS)
664 AC_SUBST(SPEECHD_LIBS)
665 AM_CONDITIONAL(SPEECH_SPEECH_DISPATCHER, test "x${speech_speech_dispatcher}" = "xyes")
666
667 ## vehicle
668 # demo
669 AC_ARG_ENABLE(vehicle-demo, [  --disable-vehicle-demo              disable vehicle type demo], vehicle_demo=$enableval;vehicle_demo_reason="configure parameter")
670 AM_CONDITIONAL(VEHICLE_DEMO, test "x${vehicle_demo}" = "xyes")
671 # file
672 AC_ARG_ENABLE(vehicle-file, [  --disable-vehicle-file              disable vehicle type file], vehicle_file=$enableval;vehicle_file_reason="configure parameter")
673 AM_CONDITIONAL(VEHICLE_FILE, test "x${vehicle_file}" = "xyes")
674 # gpsd
675 if test "x${vehicle_gpsd}" = xyes
676 then
677         AC_CHECK_HEADER(gps.h, AC_DEFINE([HAVE_LIBGPS],[],Define to 1 if you have the <gps.h> header file.) GPSD_LIBS="-lgps", vehicle_gpsd=no; vehicle_gpsd_reason="no gps.h" )
678 fi
679 AC_SUBST(GPSD_CFLAGS)
680 AC_SUBST(GPSD_LIBS)
681 AM_CONDITIONAL(VEHICLE_GPSD, [test "x${vehicle_gpsd}" = "xyes"])
682 # gypsy
683 AC_ARG_ENABLE(vehicle-gypsy,[  --disable-vehicle-gypsy             disable vehicle type gypsy], vehicle_gypsy=$enableval;vehicle_gypsy_reason="configure parameter")
684 if test "x${vehicle_gypsy}" = "xyes"
685 then
686         PKG_CHECK_MODULES(GYPSY, gypsy, ,vehicle_gypsy=no;vehicle_gypsy_reason="package gypsy missing")
687 fi
688 AC_SUBST(GYPSY_CFLAGS)
689 AC_SUBST(GYPSY_LIBS)
690 AM_CONDITIONAL(VEHICLE_GYPSY, test "x${vehicle_gypsy}" = "xyes")
691
692 NAVIT_CFLAGS="$NAVIT_CFLAGS $GLIB_CFLAGS $GMODULE_CFLAGS -I\$(top_builddir)/intl"
693 NAVIT_LIBS="$NAVIT_LIBS $GLIB_LIBS $GMODULE_LIBS -L\$(top_builddir)/intl"
694 AC_SUBST(NAVIT_CFLAGS)
695 AC_SUBST(NAVIT_LIBS)
696
697 AC_CONFIG_FILES([
698 Makefile
699 navit/Makefile
700 navit/binding/Makefile
701 navit/binding/python/Makefile
702 navit/binding/dbus/Makefile
703 navit/data/Makefile
704 navit/data/mg/Makefile
705 navit/data/textfile/Makefile
706 navit/data/binfile/Makefile
707 navit/data/garmin/Makefile
708 navit/data/poi_geodownload/Makefile
709 navit/data/poi_geodownload/libmdb/Makefile
710 navit/data/poi_geodownload/libmdb/include/Makefile
711 navit/fib-1.1/Makefile
712 navit/graphics/Makefile
713 navit/graphics/gtk_drawing_area/Makefile
714 navit/graphics/directfb/Makefile
715 navit/graphics/cogl/Makefile
716 navit/graphics/opengl/Makefile
717 navit/graphics/null/Makefile
718 navit/graphics/sdl/Makefile
719 navit/graphics/qt_qpainter/Makefile
720 navit/graphics/win32/Makefile
721 navit/gui/Makefile
722 navit/gui/gtk/Makefile
723 navit/gui/internal/Makefile
724 navit/gui/clutter/Makefile
725 navit/gui/cegui/Makefile
726 navit/gui/cegui/datafiles/Makefile
727 navit/gui/directfb/Makefile
728 navit/gui/win32/Makefile
729 navit/osd/Makefile
730 navit/osd/core/Makefile
731 navit/speech/Makefile
732 navit/speech/cmdline/Makefile
733 navit/speech/speech_dispatcher/Makefile
734 navit/support/Makefile
735 navit/support/ezxml/Makefile
736 navit/support/glib/Makefile
737 navit/support/win32/Makefile
738 navit/support/wordexp/Makefile
739 navit/support/zlib/Makefile
740 navit/vehicle/Makefile
741 navit/vehicle/file/Makefile
742 navit/vehicle/gpsd/Makefile
743 navit/vehicle/gypsy/Makefile
744 navit/vehicle/demo/Makefile
745 navit/xpm/Makefile
746 navit/maps/Makefile
747 intl/Makefile
748 po/Makefile
749 ])
750 #src/data/garmin_img/Makefile
751
752 AC_OUTPUT
753
754
755 echo ""
756 echo ""
757 echo "Summary of your installation :"
758 # FIXME : maybe elaborate missing dependencies
759 if test x"$sdl" != xyes
760         then
761         sdl_failures="(libsdl maybe?) "
762 fi
763 if test x"$xmu" != xyes
764         then                
765         sdl_failures=$sdl_failures"libxmu "
766 fi        
767 if test x"$glut" != xyes
768        then
769         sdl_failures=$sdl_failures"glut "
770 fi
771 if test x"$glc" != xyes
772         then
773         sdl_failures=$sdl_failures"quesoglc "
774 fi
775 if test x"$cegui" != xyes
776         then
777         sdl_failures=$sdl_failures"cegui-devel >= 0.5 "
778 fi
779 if test -z "$sdl_failures"
780         then
781         echo "OpenGL gui  : ENABLED, with $CEGUI_LIBS"
782         else
783                  echo "OpenGL gui  : DISABLED : you are missing $sdl_failures"
784 fi
785 if test x"$directfb_pkgconfig" = xyes
786         then
787         echo "DIRECTFB    : ENABLED"
788         else
789         echo "DIRECTFB    : DISABLED"
790 fi
791 if test x"$clutter_pkgconfig" = xyes
792         then
793         echo "Clutter gui : ENABLED"
794         else 
795         echo "Clutter gui : DISABLED"
796 fi
797 if test x"$enable_hildon" = xyes
798         then
799         echo "Maemo/Hildon: ENABLED"
800         else
801         echo "Maemo/Hildon: DISABLED"
802 fi
803 if test x"${USE_GARMIN}" = xyes
804         then
805         if test "x$use_libgarmin" = "xyes"
806                 then
807                 echo "Garmin IMG  : ENABLED"
808                 else
809                 echo "Garmin IMG  : DISABLED (you don't have libgarmin)"
810         fi
811         else 
812                 echo "Garmin IMG  : DISABLED (you requested it)"
813 fi
814 echo "Plugins:             $plugins ($plugins_reason)"
815 echo "Postgresql:          $postgresql ($postgresql_reason)"
816 echo "Samplemap:           $samplemap ($samplemap_reason)"
817 echo "Graphics types:"
818 echo "  gtk_drawing_area:  $graphics_gtk_drawing_area ($graphics_gtk_drawing_area_reason)"
819 echo "  qt_qpainter:       $graphics_qt_qpainter ($graphics_qt_qpainter_reason)"
820 echo "  win32:             $graphics_win32 ($graphics_win32_reason)"
821
822 echo "GUI types:"
823 echo "  gtk:               $gui_gtk ($gui_gtk_reason)"
824 echo "  internal:          $gui_internal ($gui_internal_reason)"
825 echo "  win32:             $gui_win32 ($gui_win32_reason)"
826
827 echo "Speech types:"
828 echo "  cmdline:           $speech_cmdline ($speech_cmdline_reason)"
829 echo "  speech_dispatcher: $speech_speech_dispatcher ($speech_speech_dispatcher_reason)"
830
831 echo "Vehicle types:"
832 echo "  demo:              $vehicle_demo ($vehicle_demo_reason)"
833 echo "  file:              $vehicle_file ($vehicle_file_reason)"
834 echo "  gpsd:              $vehicle_gpsd ($vehicle_gpsd_reason)"
835 echo "  gypsy:             $vehicle_gypsy ($vehicle_gypsy_reason)"
836
837 if  test "x${gtk2_pkgconfig}" != "xyes" -a "x${sdl}" != "xyes" -a "x${directfb_pkgconfig}" != "xyes" -a "x${gui_win32}" != "xyes" -a "x${gui_internal}" != "xyes"
838         then
839         echo ""
840         echo "" 
841         echo "*** WARNING! you have no gui that can be built! ***"
842         echo "Please install the dependency for at least gtk or sdl gui"
843         echo "For more details, see the wiki at http://wiki.navit-project.org/"
844         echo "" 
845         exit 1
846 fi
847