Fix:map_binfile:Uninitialized variable
[navit-package] / configure.in
1 AC_INIT(navit, 0.2.0)
2 AC_CONFIG_MACRO_DIR([m4])
3 SOURCE_MODE=svn
4
5 AM_INIT_AUTOMAKE
6 AM_CONFIG_HEADER(config.h)
7
8 AC_SUBST(SOURCE_MODE)
9 AM_CONDITIONAL(SOURCE_MODE_SVN, [test "x${SOURCE_MODE}" = "xsvn"])
10
11 if test "x${SOURCE_MODE}" = "xsvn" ; then
12         USE_MAINTAINER_MODE=yes
13 else
14         USE_MAINTAINER_MODE=no
15 fi
16
17 AC_DEFUN([AM_MAINTAINER_MODE],
18 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
19   dnl maintainer-mode is enabled by default (reason of inclusion of this function)
20   AC_ARG_ENABLE(maintainer-mode,
21 [  --enable-maintainer-mode  enable make rules and dependencies not useful
22                           (and sometimes confusing) to the casual installer],
23       USE_MAINTAINER_MODE=$enableval)
24   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
25   AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
26   MAINT=$MAINTAINER_MODE_TRUE
27   AC_SUBST(MAINT)dnl
28 ]
29 )
30
31 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
32
33 AM_MAINTAINER_MODE
34
35
36 plugins=yes; plugins_reason=default
37 postgresql=yes; postgresql_reason=default
38 samplemap=yes; samplemap_reason=default
39 binding_dbus=yes; binding_dbus_reason=default
40 binding_python=yes; binding_python_reason=default
41 font_freetype=yes; font_freetype_reason=default
42 fontconfig=yes; fontconfig_reason=default
43 gui_gtk=no; gui_gtk_reason=default
44 gui_win32=no; gui_win32_reason=default
45 gui_internal=yes; gui_internal_reason=default
46 graphics_gd=no; graphics_gd_reason=default
47 graphics_gtk_drawing_area=no; graphics_gtk_drawing_area_reason=default
48 graphics_qt_qpainter=yes; graphics_qt_qpainter_reason=default
49 graphics_opengl=yes; graphics_opengl_reason=default
50 graphics_sdl=yes; graphics_sdl_reason=default
51 graphics_win32=no; graphics_win32_reason=default
52 speech_android=no; speech_android_reason=default
53 speech_cmdline=yes; speech_cmdline_reason=default
54 speech_espeak=no; speech_espeak_reason=default
55 speech_speech_dispatcher=yes; speech_speech_dispatcher_reason=default
56 vehicle_demo=yes; vehicle_demo_reason=default
57 vehicle_file=yes; vehicle_file_reason=default
58 vehicle_gpsd=yes; vehicle_gpsd_reason=default
59 vehicle_gpsd_dbus=no; vehicle_gpsd_dbus_reason=default
60 vehicle_gypsy=yes; vehicle_gypsy_reason=default
61 vehicle_null=no; vehicle_null_reason=default
62 vehicle_wince=no; vehicle_wince_reason=default
63 vehicle_iphone=no; vehicle_iphone_reason=default
64 vehicle_android=no; vehicle_android_reason=default
65 graphics_android=no; graphics_android_reason=default
66
67 AC_CANONICAL_HOST
68 win32=no
69 win32ce=no
70 case $host_os in
71 wince|mingw32ce|cegcc)
72         win32=yes
73         win32ce=yes
74         AC_DEFINE(HAVE_API_WIN32_BASE, 1, [Have Windows Base API])
75         AC_DEFINE(HAVE_API_WIN32_CE, 1, [Have Windows CE API])
76         gui_win32=yes; gui_win32_reason="host_os is wince"
77         graphics_win32=yes; graphics_win32_reason="host_os is wince"
78         vehicle_wince=yes; vehcile_wince_reason="host_os is wince"
79         speech_espeak=yes; speech_espeak_reason="host_os is wince"
80         support_libpng=yes
81         ;;
82 mingw32)
83         win32=yes
84         AC_DEFINE(HAVE_API_WIN32_BASE, 1, [Have Windows Base API])
85         AC_DEFINE(HAVE_API_WIN32, 1, [Have Windows API])
86         gui_win32=yes; gui_win32_reason="host_os is mingw32"
87         graphics_win32=yes; graphics_win32_reason="host_os is mingw32"
88         speech_espeak=yes; speech_espeak_reason="host_os is mingw32"
89         support_libpng=yes
90         LIBS="$LIBS -lwinmm"
91         ;;
92 linux*_android)
93         android=yes
94         AC_DEFINE(HAVE_API_ANDROID, 1, [Have Android API])
95         echo "void dl_unwind_find_exidx(void) {}" >crt0.c
96         $CC -c crt0.c
97         $AR r libg.a crt0.o
98         vehicle_android=yes; vehicle_android_reason="host_os is android"
99         graphics_android=yes; graphics_android_reason="host_os is android"
100         speech_android=yes; speech_android_reason="host_os is android"
101         MODULE_LDFLAGS="-Xcompiler -nostdlib"
102         NAVIT_MODULE_LDFLAGS="$MODULE_LDFLAGS -L\$(top_builddir)/navit -lnavit"
103         ;;
104 esac
105 if test "x$win32" = "xyes"
106 then
107         NAVIT_CFLAGS="$NAVIT_CFLAGS -I\$(top_srcdir)/navit/support/win32"
108         NAVIT_LIBS="$NAVIT_LIBS -L\$(top_builddir)/navit/support/win32 -lsupport_win32"
109 fi
110
111
112 AM_CONDITIONAL(SUPPORT_WIN32, [test "x$win32" = "xyes"])
113 AM_CONDITIONAL(SUPPORT_WIN32CE, [test "x$win32ce" = "xyes"])
114 AM_CONDITIONAL(SUPPORT_ANDROID, [test "x$android" = "xyes"])
115
116 if test "x$support_libpng" = "xyes"
117 then
118         NAVIT_CFLAGS="$NAVIT_CFLAGS -I\$(top_srcdir)/navit/support/libpng"
119         NAVIT_LIBS="$NAVIT_LIBS -L\$(top_builddir)/navit/support/libpng -lsupport_libpng"
120 fi
121 AM_CONDITIONAL(SUPPORT_LIBPNG, [test "x$support_libpng" = "xyes"])
122
123 AC_SUBST(MODULE_LDFLAGS)
124 AC_SUBST(NAVIT_MODULE_LDFLAGS)
125
126 LIBS="$LIBS -lm"
127 if test "$win32" == "no"; then
128         LIBS="$LIBS -rdynamic"
129 fi
130
131 m4_ifndef([AC_USE_SYSTEM_EXTENSIONS],
132         [AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], [AC_GNU_SOURCE])])
133
134 AC_USE_SYSTEM_EXTENSIONS
135
136 AC_PROG_OBJC
137 AC_PROG_CC
138 AC_PROG_OBJC
139 if eval "test x`uname` = xDarwin"; then
140         CFLAGS="$CFLAGS -I/opt/local/include -L/opt/local/lib"
141 fi
142 if eval "test x$GCC = xyes"; then
143         CFLAGS="$CFLAGS -Wall -Wcast-align -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
144 fi
145 AM_PROG_CC_C_O
146
147 AC_PROG_CXX
148 if eval "test x$GXX = xyes"; then
149         CXXFLAGS="$CXXFLAGS -Wall -Wcast-align -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
150 fi
151
152 PKG_CHECK_EXISTS
153 if test "x${cross_compiling}" = "xyes"; then
154         samplemap="no";samplemap_reason="not supported for cross compiling"
155         binding_python="no";binding_python_reason="not supported for cross compiling"
156         postgresql="no";postgresql_reason="not supported for cross compiling"
157         AC_MSG_CHECKING([for a C compiler for build tools])
158         AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
159 else
160         CC_FOR_BUILD=$CC
161 fi
162 CCLD_FOR_BUILD="$CC_FOR_BUILD"
163 AC_SUBST(cross_compiling)
164 AC_SUBST(CC_FOR_BUILD)
165 AC_SUBST(CCLD_FOR_BUILD)
166
167 # Endianness
168 # defines WORDS_BIGENDIAN for big-endian systems
169 AC_C_BIGENDIAN
170
171 AC_ARG_ENABLE(variant, [  --enable-variant=something          set variant], NAVIT_VARIANT=$enableval)
172 AC_SUBST(NAVIT_VARIANT)
173
174 AC_ARG_ENABLE(cache-size, [  --enable-cache-size=size in bytes        set cache size], AC_DEFINE_UNQUOTED(CACHE_SIZE,[${enableval}], [Size of Cache in Bytes]))
175
176 AC_ARG_ENABLE(avoid-unaligned, [  --enable-avoid-unaligned          avoid unaligned accesses], AVOID_UNALIGNED=$enableval, AVOID_UNALIGNED=no)
177 test x"${AVOID_UNALIGNED}" = xyes && AC_DEFINE(AVOID_UNALIGNED,[],Define to avoid unaligned access)
178
179 AC_ARG_ENABLE(avoid-float, [  --enable-avoid-float              avoid floating point calculations], AVOID_FLOAT=$enableval, AVOID_FLOAT=no)
180 test x"${AVOID_FLOAT}" = xyes && AC_DEFINE(AVOID_FLOAT,[],Define to avoid floating point)
181
182 AC_ARG_ENABLE(transformation-roll, [  --enable-transformation-roll      add support for specifying roll angle in transformation], ENABLE_ROLL=$enableval, ENABLE_ROLL=no)
183 test x"${ENABLE_ROLL}" = xyes && AC_DEFINE(ENABLE_ROLL,[],Define to add support for specifying roll angle in transformation)
184
185 AC_ARG_ENABLE(hildon, [  --disable-hildon              build without maemo/hildon support], enable_hildon=$enableval, enable_hildon=yes)
186 if test "x${enable_hildon}" = "xyes" ; then
187         PKG_CHECK_MODULES(HILDON, hildon-1 >= 0.9.9, , [
188                 AC_MSG_RESULT(no)
189                 enable_hildon=no
190         ])
191         PKG_CHECK_MODULES(GPSBT, gpsbt, [
192                 AC_DEFINE(HAVE_GPSBT, 1, [Have the gpsbt library])
193                 AC_SUBST(GPSBT_CFLAGS)
194                 AC_SUBST(GPSBT_LIBS)
195                 ], [
196                 AC_MSG_RESULT(no)
197         ])
198         if test x"${enable_hildon}" = xyes ; then
199                 AC_DEFINE(USE_HILDON, 1, [Build with maemo/hildon support])
200                 AC_SUBST(HILDON_CFLAGS)
201                 AC_SUBST(HILDON_LIBS)
202         fi
203 fi
204 AM_CONDITIONAL(USE_HILDON, test "${enable_hildon}" = "xyes")
205
206 AC_ARG_ENABLE(garmin, [  --disable-garmin             disable garmin support], USE_GARMIN=$enableval, USE_GARMIN=yes)
207
208 # samplemap
209 AC_PATH_PROG(_PATH_BZCAT,[bzcat])
210 if test "x${_PATH_BZCAT}" = "x" ; then
211         samplemap=no; samplemap_reason="bzcat missing"
212 fi
213 AC_ARG_ENABLE(samplemap, [  --disable-samplemap             don't build the samplemap], samplemap=$enableval;samplemap_reason="configure parameter")
214 AM_CONDITIONAL(BUILD_SAMPLEMAP, [test "x$samplemap" = "xyes"])
215
216 AC_ARG_ENABLE(fastmath, [  --disable-fastmath             don't build with fastmath], fastmath=$enableval, fastmath=yes)
217 AM_CONDITIONAL(FASTMATH, [test "x$fastmath" = "xyes"])
218
219 if test x"$fastmath" = xyes; then
220         if eval "test x$GCC = xyes"; then
221                 CFLAGS="$CFLAGS -ffast-math"
222         fi
223 fi
224
225 X_CFLAGS="-I$x_includes"
226 AS_IF([test -n "$ac_x_libraries"], [X_LIBS="-L$ac_x_libraries"])
227
228 # glib
229 AC_ARG_ENABLE(glib, [  --disable-glib             don't build with external glib], glib=$enableval, glib=yes)
230 if test x"${glib}" = "xyes"; then
231         PKG_CHECK_MODULES(GLIB, [glib-2.0 gthread-2.0], [glib=yes],[glib=no])
232 fi
233 if test "x${glib}" = "xyes"; then
234         AC_DEFINE(HAVE_GLIB, 1, [Define to 1 if you have (external) glib library])
235 else
236         GLIB_CFLAGS="-I\$(top_srcdir)/navit/support -I\$(top_srcdir)/navit/support/glib -I\$(top_srcdir)/navit/support/ezxml"
237         GLIB_LIBS="-L\$(top_builddir)/navit/support/glib -lsupport_glib -L\$(top_builddir)/navit/support/ezxml -lsupport_ezxml"
238 fi
239
240 # gmodule
241 AC_ARG_ENABLE(gmodule, [  --disable-gmodule             don't build with gmodule], gmodule=$enableval, gmodule=yes)
242 if test x"${gmodule}" = "xyes"; then
243         PKG_CHECK_MODULES(GMODULE, [gmodule-2.0], [gmodule=yes], [gmodule=no])
244 fi
245 if test "x${gmodule}" = "xyes"; then
246         AC_DEFINE(HAVE_GMODULE, 1, [Define to 1 if you have gmodule])
247 else
248         AC_CHECK_LIB(dl, dlopen,
249                 [plugins_reason="default, via dlopen";GMODULE_LIBS="-ldl";AC_DEFINE(HAVE_DLOPEN, 1, [Define to 1 if you have dlopen])],          
250                 [plugins="no"; plugins_reason="package gmodule and dlopen missing"]
251         )
252 fi
253 # plugins
254 AC_ARG_ENABLE(plugins,  [  --disable-plugins          disable plugins], [ plugins=$enableval;plugin_reason="configure parameter" ])
255 if test "x${plugins}" = "xyes"; then
256         AC_ENABLE_SHARED
257         AC_DISABLE_STATIC
258         AC_DEFINE(
259                 [USE_PLUGINS],
260                 [],
261                 Define to 1 if you have plugins.
262         )
263 else
264         AC_DISABLE_SHARED
265         AC_ENABLE_STATIC
266 fi
267 AM_CONDITIONAL(PLUGINS, [test "x$plugins" = "xyes"])
268 AC_PROG_LIBTOOL
269
270 AM_CONDITIONAL(EVENT_GLIB, [test "x$glib" = "xyes"])
271 AM_CONDITIONAL(SUPPORT_GLIB, [test "x$glib" = "xno"])
272 AM_CONDITIONAL(SUPPORT_EZXML, [test "x$glib" = "xno"])
273 AM_CONDITIONAL(MAP_POI_GEODOWNLOAD, [test "x$glib" = "xyes"])
274
275 AC_CHECK_HEADER(
276         zlib.h,
277         AC_DEFINE(
278                 [HAVE_ZLIB],
279                 [],
280                 Define to 1 if you have the <zlib.h> header file.
281         )
282         ZLIB_LIBS="-lz"
283         zlib=yes,
284         ZLIB_CFLAGS="-I\$(top_srcdir)/navit/support/zlib"
285         ZLIB_LIBS="-L\$(top_builddir)/navit/support/zlib -lsupport_zlib"
286         zlib=no
287 )
288 AM_CONDITIONAL(SUPPORT_ZLIB, [test "x$zlib" = "xno"])
289 AC_SUBST(ZLIB_CFLAGS)
290 AC_SUBST(ZLIB_LIBS)
291
292 # gtk
293 PKG_CHECK_MODULES(GTK2, [gtk+-2.0], [gtk2_pkgconfig=yes], [gtk2_pkgconfig=no])
294 if test "x$gtk2_pkgconfig" = "xyes"; then
295         AC_DEFINE(HAVE_GTK2, 1, [Define to 1 if you have gtk2])
296         graphics_gtk_drawing_area=yes; graphics_gtk_drawing_area_reason="gtk+-2.0 present"
297         gui_gtk=yes; gui_gtk_reason="gtk+-2.0 present"
298 fi
299
300 # fsync
301 AC_MSG_CHECKING(for fsync)
302 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))
303
304 # system
305 AC_MSG_CHECKING(for system)
306 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))
307
308 AC_MSG_CHECKING(for CreateProcess)
309 AC_TRY_LINK([#include <windows.h>], [CreateProcess(NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL);],AC_MSG_RESULT(yes);AC_DEFINE(HAVE_CREATEPROCESS, 1, [Define to 1 if you have the `CreateProcess' function.]) speech_cmdline=yes; speech_cmdline_reason="CreateProcess exists", AC_MSG_RESULT(no))
310
311 AC_ARG_ENABLE(graphics-sdl, [  --disable-graphics-sdl             don't create graphics sdl], graphics_sdl=$enableval;graphics_sdl_reason="configure parameter")
312
313 if test "x${graphics_sdl}" = "xyes" ; then
314         PKG_CHECK_MODULES(SDL, 
315                           [sdl], 
316                           [graphics_sdl="yes"
317                            graphics_sdl_reason="sdl present"] , 
318                           [graphics_sdl="no"
319                            graphics_sdl_reason="sdl not available"]
320                          )
321         AC_SUBST(SDL_CFLAGS)
322         AC_SUBST(SDL_LIBS)
323 fi
324 if test "x${graphics_sdl}" = "xyes" ; then
325         save_CPPFLAGS=$CPPFLAGS
326         CPPFLAGS="$SDL_CFLAGS $CPPFLAGS"
327         AC_CHECK_HEADER(SDL_image.h,SDL_IMAGE_LIBS=-lSDL_image,graphics_sdl="no";graphics_sdl_reason="SDL_image.h missing")
328         AC_SUBST(SDL_IMAGE_LIBS)
329         CPPFLAGS=$save_CPPFLAGS
330 fi
331 if test "x${graphics_sdl}" = "xyes" ; then
332         AC_DEFINE(USE_GRAPHICS_SDL, 1, [Build with graphics sdl])
333 fi
334 AM_CONDITIONAL(USE_GRAPHICS_SDL, test "x${graphics_sdl}" = "xyes")
335
336 AC_ARG_ENABLE(postgresql, [  --disable-postgresql             don't add postgresql support to osm2navit], postgresql=$enableval;postgresql_reason="configure parameter")
337 if test "x${postgresql}" = "xyes" ; then
338         if test -z "$PG_CONFIG"; then
339             AC_PATH_PROG([PG_CONFIG], [pg_config], [])
340         fi
341         AC_MSG_CHECKING([for PostgreSQL libraries with $PG_CONFIG])
342         if test ! -x "$PG_CONFIG"; then
343             if test "x${PG_CONFIG}" = "x" ; then
344                  postgresql_reason="$PG_CONFIG not executable"
345             else
346                  postgresql_reason="pg_config missing"
347             fi
348             postgresql=no 
349             AC_MSG_RESULT([no])
350         else
351             POSTGRESQL_CFLAGS="-I`$PG_CONFIG --includedir`"
352             POSTGRESQL_LIBS="-L`$PG_CONFIG --libdir` -lpq"
353             AC_DEFINE(HAVE_POSTGRESQL, 1, [Postgresql libraries available])
354             AC_SUBST(POSTGRESQL_CFLAGS)
355             AC_SUBST(POSTGRESQL_LIBS)
356             AC_MSG_RESULT([yes])
357         fi 
358 fi
359 AM_CONDITIONAL(HAVE_POSTGRESQL, test "x${postgresql}" = "xyes")
360 # font
361 # freetype
362 AC_ARG_ENABLE(font-freetype, [  --disable-font-freetype             don't add freetype support], font_freetype=$enableval;font_freetype_reason="configure parameter")
363 if test "x${font_freetype}" = "xyes" -a "x${FREETYPE2_CFLAGS}" = "x" -a "x${FREETYPE2_LIBS}" = "x"; then
364         PKG_CHECK_MODULES(FREETYPE2, [freetype2], , [font_freetype=no;font_freetype_reason="Package freetype2 missing"])
365 fi
366 AC_SUBST(FREETYPE2_CFLAGS)
367 AC_SUBST(FREETYPE2_LIBS)
368 AM_CONDITIONAL(FONT_FREETYPE, test "x${font_freetype}" = "xyes")
369
370 AC_ARG_ENABLE(fontconfig, [  --disable-fontconfig             don't add fontconfig support], fontconfig=$enableval;fontconfig_reason="configure parameter")
371 if test "x${fontconfig}" = "xyes"; then
372         PKG_CHECK_MODULES(FONTCONFIG, [fontconfig], [fontconfig=yes], [fontconfig=no])
373 fi
374 if test "x$fontconfig" = "xyes"; then
375    AC_DEFINE(HAVE_FONTCONFIG, 1, [Define to 1 if you have fontconfig])
376 fi
377 AC_SUBST(FONTCONFIG_CFLAGS)
378 AC_SUBST(FONTCONFIG_LIBS)
379
380 AM_CONDITIONAL(FONTS, test "x${font_freetype}" = "xyes" -a "x$fontconfig" != "xyes")
381
382 PKG_CHECK_MODULES(IMLIB2, [imlib2], [imlib2_pkgconfig=yes], [imlib2_pkgconfig=no])
383 if test "x$imlib2_pkgconfig" = "xyes"; then
384    AC_DEFINE(HAVE_IMLIB2, 1, [Define to 1 if you have imlib2])
385 fi
386 AC_SUBST(IMLIB2_CFLAGS)
387 AC_SUBST(IMLIB2_LIBS)
388
389
390
391 AC_ARG_ENABLE(gui-sdl, [  --disable-gui-sdl             don't create gui sdl ], MODULE_GUI_SDL=$enableval, MODULE_GUI_SDL=yes)
392 if test "x$MODULE_GUI_SDL" = "xyes"; then
393         AC_CHECK_HEADER(
394                 SDL/SDL.h,
395                 AC_DEFINE(
396                         [HAVE_LIBSDL],
397                         [],
398                         Define to 1 if you have the <SDL/SDL.h> header file.
399                         )
400                         SDL_LIBS="-lSDL"
401                         sdl=yes,
402                 AC_MSG_WARN([*** no SDL/SDL.h -- SDL support disabled])
403         )
404 fi
405
406 AC_CHECK_HEADER(
407         X11/Xmu/Xmu.h,
408         AC_DEFINE(
409                 [HAVE_XMU],
410                 [],
411                 Define to 1 if you have the <X11/Xmu/Xmu.h> header file.
412                 )
413                 xmu=yes,
414         AC_MSG_WARN([*** no X11/Xmu/Xmu.h -- opengl and SDL support disabled])
415 )
416
417 AC_ARG_ENABLE(graphics-opengl, [  --disable-graphics-opengl      disable graphics type OpenGL], graphics_opengl=$enableval;graphics_opengl_reason="configure parameter")
418 if test "x${graphics_opengl}" = "xyes" ; then
419
420 AC_CHECK_HEADER(
421         GL/gl.h,
422         AC_DEFINE(
423                 [HAVE_OPENGL],
424                 [],
425                 Define to 1 if you have the <GL/gl.h> header file.
426                 )
427                 OPENGL_LIBS="$X_LIBS -lGL -lGLU"
428                 opengl=yes,
429         AC_MSG_WARN([*** no GL/gl.h -- opengl and SDL support disabled];graphics_opengl=no;graphics_opengl_reason="Headers missing")
430 )
431
432 AC_CHECK_HEADER(
433         GL/glut.h,
434         AC_DEFINE(
435                 [HAVE_GLUT],
436                 [],
437                 Define to 1 if you have the <GL/glut.h> header file.
438                 )
439                 glut=yes,
440         AC_MSG_WARN([*** no GL/glut.h -- opengl and SDL support disabled]);graphics_opengl=no;graphics_opengl_reason="Headers missing"
441 )
442
443 AC_SUBST(OPENGL_CFLAGS)
444 AC_SUBST(OPENGL_LIBS)
445
446 AC_CHECK_HEADER(
447         GL/glc.h,
448         AC_DEFINE(
449                 [HAVE_GLC],
450                 [],
451                 Define to 1 if you have the <GL/glc.h> header file.
452                 )
453                 GLC_LIBS="-lGLC"
454                 glc=yes,
455         AC_MSG_WARN([*** no GL/glc.h -- opengl and SDL support disabled])
456 )
457 AC_SUBST(GLC_CFLAGS)
458 AC_SUBST(GLC_LIBS)
459 fi
460
461 AM_CONDITIONAL(GUI_SDL, [test "x$sdl" = "xyes" -a "x$opengl" = "xyes" -a "x$glc" = "xyes" -a "x$xmu" = "xyes" ])
462 AM_CONDITIONAL(GRAPHICS_OPENGL, [test "x$glut" = "xyes" -a "x$opengl" = "xyes" -a "x$glc" = "xyes" ])
463
464
465 if test x"${USE_GARMIN}" = xyes
466 then
467         # check for libgarmin
468         PKG_CHECK_MODULES(LIBGARMIN, libgarmin, use_libgarmin=yes, use_libgarmin=no)
469         AC_SUBST(LIBGARMIN_CFLAGS)
470         AC_SUBST(LIBGARMIN_LIBS)
471 fi
472         AM_CONDITIONAL(HAVELIBGARMIN, [test "x$use_libgarmin" = "xyes"])
473
474 ## binding
475 # python
476 AC_ARG_ENABLE(binding-python, [  --disable-binding-python             don't create binding python], binding_python=$enableval;binding_python_reason="configure parameter")
477 if test "x${binding_python}" = "xyes"; then
478         AC_PATH_PROG(_PATH_PYTHON,[python])
479         dnl Libraries and flags for embedded Python.
480         dnl FIXME: I wish there was a less icky way to get this.
481         if test "x${_PATH_PYTHON}" != "x" ; then
482                 AC_MSG_CHECKING(for Python linkage)
483                 AC_PATH_PROG([PYTHONCONFIG], [python-config], [])
484                 if test "x${PYTHONCONFIG}" = "x" ; then
485                         py_prefix=`$_PATH_PYTHON -c 'import sys; print sys.prefix'`
486                         py_ver=`$_PATH_PYTHON -c 'import sys; print sys.version[[:3]]'`
487                         py_lib=`$_PATH_PYTHON -c 'import sys; print sys.lib'`
488                         py_libdir="${py_prefix}/${py_lib}/python${py_ver}"
489                         PYTHON_CFLAGS="-I${py_prefix}/include/python${py_ver}"
490                         if test -f $py_libdir/config/Makefile -a -f $py_prefix/include/python${py_ver}/Python.h; then
491                                 py_libs=`grep '^LIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
492                                 py_libc=`grep '^LIBC=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
493                                 py_libm=`grep '^LIBM=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
494                                 py_liblocalmod=`grep '^LOCALMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
495                                 py_libbasemod=`grep '^BASEMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
496                                 PYTHON_LIBS="-L$py_libdir/config $py_libs $py_libc $py_libm -lpython$py_ver $py_liblocalmod $py_libbasemod"
497                                 PYTHON_LIBS=`echo $PYTHON_LIBS | sed -e 's/[ \\t]*/ /g'`
498                                 AC_MSG_RESULT($py_libdir)
499                         else
500                                 binding_python="no"
501                                 binding_python_reason="$py_libdir/config/Makefile or $py_prefix/include/python${py_ver}/Python.h missing"
502                         fi
503
504                 else
505                         PYTHON_CFLAGS="`${PYTHONCONFIG} --cflags`"
506                         PYTHON_LIBS="`${PYTHONCONFIG} --ldflags`"
507                 fi
508         else
509                 binding_python="no"
510                 binding_python_reason="python executable missing"
511         fi
512 fi
513 if test "x${binding_python}" = xyes ; then
514         AC_DEFINE(USE_BINDING_PYTHON, 1, [Build with binding python])
515 fi
516 AC_SUBST(PYTHON_CFLAGS)
517 AC_SUBST(PYTHON_LIBS)
518 AM_CONDITIONAL(BINDING_PYTHON, test "x${binding_python}" = "xyes")
519
520 # dbus
521 AC_ARG_ENABLE(binding-dbus,   [  --disable-binding-dbus               don't create binding dbus], binding_dbus=$enableval;binding_dbus_reason="configure parameter")
522 if test "x${binding_dbus}" = "xyes" ; then
523         PKG_CHECK_MODULES(DBUS, [dbus-glib-1], ,binding_dbus=no)
524 fi
525 if test "x${binding_dbus}" = "xyes" ; then
526         AC_DEFINE(USE_BINDING_DBUS, 1, [Build with binding dbus])
527         vehicle_gpsd_dbus="yes"
528         vehicle_gpsd_dbus_reason="dbus binding present"
529 fi
530 AC_SUBST(DBUS_CFLAGS)
531 AC_SUBST(DBUS_LIBS)
532 AM_CONDITIONAL(BINDING_DBUS, test "x${binding_dbus}" = "xyes")
533 AM_CONDITIONAL(VEHICLE_GPSD_DBUS, test "x${vehicle_gpsd_dbus}" = "xyes")
534 AC_ARG_WITH(dbus-service-dir, [ --with-dbus-service-dir   specify where the dbus service dir resides], DBUS_SERVICE_DIR=$withval, DBUS_SERVICE_DIR="$datarootdir/dbus-1/services")
535 AC_SUBST(DBUS_SERVICE_DIR)
536
537 # svg
538 AC_ARG_ENABLE(svg, [  --disable-svg        disable Scalable Vector Graphics], enable_svg=$enableval, enable_svg=yes)
539 AC_ARG_ENABLE(svg2png, [  --disable-svg2png        disable conversion of svgs to pngs], enable_svg2png=$enableval, enable_svg2png=yes)
540 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")
541 AC_ARG_ENABLE(svg2png-scaling-flag, [  --enable-svg2png-scaling-flag   enable conversion of flag svgs to pngs with specified sizes], SVG2PNG_SCALES_FLAG=$enableval, SVG2PNG_SCALES_FLAG="8 16 32 48 96")
542 AC_ARG_ENABLE(svg2png-scaling-nav, [  --enable-svg2png-scaling-nav   enable conversion of nav svgs to pngs with specified sizes], SVG2PNG_SCALES_NAV=$enableval, SVG2PNG_SCALES_NAV="8 16 32 48 96")
543 AC_ARG_WITH(svg2png-use-convert, [  --with-svg2png-use-convert   use imagemagick's convert for png creation], SVG2PNG_CONVERTER="convert")
544 AC_ARG_WITH(svg2png-use-rsvg-convert, [  --with-svg2png-use-rsvg-convert   use librsvg's rsvg-convert for png creation], SVG2PNG_CONVERTER="rsvg-convert")
545 AC_ARG_WITH(svg2png-use-inkscape, [  --with-svg2png-use-inkscape   use inkscapes internal convert routines for png creation], SVG2PNG_CONVERTER="inkscape")
546 AC_ARG_WITH(svg2png-use-ksvgtopng4, [  --with-svg2png-use-ksvgtopng4   use kde4's ksvgtopng4 for png creation], SVG2PNG_CONVERTER="ksvgtopng4")
547 AC_ARG_WITH(svg2png-use-ksvgtopng, [  --with-svg2png-use-ksvgtopng   use kde3's convert for png creation], SVG2PNG_CONVERTER="ksvgtopng")
548 if test "x${enable_svg2png}" = "xyes" ; then
549     if test "x${SVG2PNG_CONVERTER}" = "x"; then
550         SVG2PNG_CONVERTER="rsvg-convert ksvgtopng ksvgtopng4 inkscape convert"
551     fi
552     AC_PATH_PROGS([SVG2PNG], ${SVG2PNG_CONVERTER}, [none])
553     if test "x${SVG2PNG}" = "xnone"; then
554         enable_svg2png="no"
555     fi
556 fi
557 AC_SUBST(SVG2PNG)
558 AC_SUBST(SVG2PNG_SCALES)
559 AC_SUBST(SVG2PNG_SCALES_FLAG)
560 AC_SUBST(SVG2PNG_SCALES_NAV)
561 AM_CONDITIONAL(USE_SVG2PNG_SCALES, test "x${SVG2PNG_SCALES}" != "xyes" -a "x${SVG2PNG_SCALES}" != "x")
562 AM_CONDITIONAL(USE_SVG2PNG_SCALES_FLAG, test "x${SVG2PNG_SCALES_FLAG}" != "xyes" -a "x${SVG2PNG_SCALES_FLAG}" != "x")
563 AM_CONDITIONAL(USE_SVG2PNG_SCALES_NAV, test "x${SVG2PNG_SCALES_NAV}" != "xyes" -a "x${SVG2PNG_SCALES_NAV}" != "x")
564 AM_CONDITIONAL(USE_SVG2PNG, test "x${enable_svg2png}" = "xyes")
565 AM_CONDITIONAL(USE_SVG, test "x${enable_svg}" = "xyes")
566
567 # XSLTS
568 AC_ARG_WITH(xslts, [  --with-xslts   enable processing of navit.xml with given xslt scripts], XSLTS=$withval, XSLTS="")
569 AC_SUBST(XSLTS)
570 AC_ARG_WITH(saxon, [ --with-saxon   specify the saxon xslt processor], SAXON=$withval, SAXON="saxon")
571 AC_SUBST(SAXON)
572
573 # Android Permissions
574 AC_ARG_WITH(android-permissions, [  --with-android-permissions   Set additional android permissions], ANDROID_PERMISSIONS=$withval, ANDROID_PERMISSIONS="")
575 AC_SUBST(ANDROID_PERMISSIONS)
576
577 # NLS
578
579 AC_ARG_ENABLE(nls,
580   [  --disable-nls        disable Native Language Support ( gettext/libintl )],
581    enable_nls=$enableval, enable_nls=yes)
582
583
584 INTLIBS=""
585 MOFILES=""
586 POFILES=""
587 POIFILES=""
588 LINGUAS=""
589
590 if test "x$enable_nls" = "xyes"; then
591
592   AC_CHECK_FUNC(gettext, [HAVEGETTEXT="yes"],[INTLIBS="-lintl" HAVEGETTEXT="yes"])
593   AC_CHECK_PROG(XGETTEXT, xgettext, xgettext)
594   AC_CHECK_PROG(MSGMERGE, msgmerge, msgmerge)
595   AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt)
596
597   if test "$XGETTEXT" != ""; then 
598     if $XGETTEXT --help 2>&1 | grep illegal >/dev/null ; then
599         echo "xgettext isn't GNU version"
600         XGETTEXT=""
601     fi
602   fi
603
604   if test "$XGETTEXT" != "" ; then
605      PO=""
606      if test "$LINGUAS" = ""; then
607            ling=` (cd $srcdir/po; /bin/ls *.po.in) `
608            for l in $ling; do
609                 lcode=`basename $l .po.in`
610                 LINGUAS="$LINGUAS$lcode "
611            done
612     fi
613     AC_DEFINE(ENABLE_NLS, [1], [NLS Please])
614     echo "xgettext and gettext() exist; will build i18n support for $LINGUAS"
615   else
616    LINGUAS=""
617    PO=""
618    echo "xgettext doesn't exist; will not build i18n support"
619    enable_nls=no
620  fi
621  for lang in $LINGUAS; do
622     MOFILES="$MOFILES $lang.mo"
623  done
624  for lang in $LINGUAS; do
625     POFILES="$POFILES $lang.po"
626  done
627  for lang in $LINGUAS; do
628     POIFILES="$POIFILES $lang.po.in"
629  done
630
631 AC_SUBST(INTLIBS)
632 AC_SUBST(MOFILES)
633 AC_SUBST(POFILES)
634 AC_SUBST(POIFILES)
635 AM_GNU_GETTEXT_VERSION
636 AM_GNU_GETTEXT(no-libtool, need-ngettext, \$(top_builddir)/intl/)
637 AC_SUBST(LIBINTL)
638 AC_SUBST(LTLIBINTL)
639 if test x"$LIBINTL" != "x" ;then
640         CFLAGS="$CFLAGS -I\$(top_builddir)/intl/"
641 fi
642
643 fi
644 AM_CONDITIONAL(ENABLE_NLS, [test "x$enable_nls" = "xyes"])
645 AC_CHECK_HEADER(
646         byteswap.h,
647         AC_DEFINE(
648                 [HAVE_BYTESWAP_H],
649                 [1],
650                 [Define to 1 if you have byteswap.h],
651                 )
652                 ,
653 )
654
655 PACKAGE=navit
656 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
657 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
658 AC_SUBST(PACKAGE)
659 AC_SUBST(VERSION)
660
661 AC_CHECK_HEADER(wordexp.h,wordexp_h=yes,wordexp_h=no;NAVIT_CFLAGS="$NAVIT_CFLAGS -I\$(top_srcdir)/navit/support/wordexp";WORDEXP_LIBS="-L\$(top_builddir)/navit/support/wordexp -lsupport_wordexp")
662 AM_CONDITIONAL(SUPPORT_WORDEXP, [test "x$wordexp_h" = "xno"])
663
664 support_libc=no
665 AC_ARG_ENABLE(support_libc, [  --enable-support-libc enable builtin mini libc ], support_libc=$enableval)
666 AM_CONDITIONAL(SUPPORT_LIBC, [test "x$support_libc" = "xyes"])
667 if test "x$support_libc" = "xyes"; then
668         CFLAGS="$CFLAGS -I\$(top_srcdir)/navit/support/libc"
669         LIBC_LIBS="-L\$(top_builddir)/navit/support/libc -lsupport_libc"
670 fi
671
672 ## graphics
673 # android
674 AC_ARG_ENABLE(graphics-android, [  --disable-graphics-android            disable graphics type android], graphics_android=$enableval;graphics_android_reason="configure parameter")
675 AM_CONDITIONAL(GRAPHICS_ANDROID, test "x${graphics_android}" = "xyes")
676 # gd
677 AC_ARG_ENABLE(graphics-gd, [  --enable-graphics-gd                enable graphics type gd], graphics_gd=$enableval;graphics_gd_reason="configure parameter")
678 if test "x${graphics_gd}" = "xyes" ; then
679         if test -z "$GDLIB_CONFIG"; then
680             AC_PATH_PROG([GDLIB_CONFIG], [gdlib-config], [])
681         fi
682         AC_MSG_CHECKING([for gdlib with $GDLIB_CONFIG])
683         if test ! -x "$GDLIB_CONFIG"; then
684             if test "x${GDLIB_CONFIG}" = "x" ; then
685                  graphics_gd_reason="$GDLIB_CONFIG not executable"
686             else
687                  graphics_gd_reason="gdlib-config missing"
688             fi
689             graphics_gd=no 
690             AC_MSG_RESULT([no])
691         else
692             GD_CFLAGS="-I`$GDLIB_CONFIG --includedir`"
693             GD_LIBS="-L`$GDLIB_CONFIG --libdir` -lgd `$GDLIB_CONFIG --libs`"
694             AC_SUBST(GD_CFLAGS)
695             AC_SUBST(GD_LIBS)
696             AC_MSG_RESULT([yes])
697         fi 
698 fi
699 AM_CONDITIONAL(GRAPHICS_GD, test "x${graphics_gd}" = "xyes")
700 # gtk_drawing_area
701 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")
702 AM_CONDITIONAL(GRAPHICS_GTK_DRAWING_AREA, [test "x${graphics_gtk_drawing_area}" = "xyes"])
703 # win32
704 AC_ARG_ENABLE(graphics-win32, [  --disable-graphics-win32            disable graphics type win32], graphics_win32=$enableval;graphics_win32_reason="configure parameter")
705 AM_CONDITIONAL(GRAPHICS_WIN32, test "x${graphics_win32}" = "xyes")
706 # qt_qpainter
707 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")
708 if test "x${graphics_qt_qpainter}" = "xyes" -a "x${QT_GUI_CFLAGS}" = "x" -a "x${QT_GUI_LIBS}" = "x"; then
709         PKG_CHECK_MODULES(QT_GUI, [QtGui QtCore], ,graphics_qt_qpainter=no,graphics_qt_qpainter_reason="Packages QtGui and/or QtCore missing")
710         if test "x${graphics_qt_qpainter}" = "xno"; then
711                 PKG_CHECK_MODULES(QT_GUI, [qt-mt],graphics_qt_qpainter=yes,graphics_qt_qpainter_reason="Package qt-mt present")
712         fi
713 fi
714 if test "x${graphics_qt_qpainter}" = "xyes" ; then
715         AC_DEFINE(USE_GRAPICS_QT_QPAINTER, 1, [Build with graphics qt_qpainter])
716         MOC=`$PKG_CONFIG QtGui --variable=moc_location`
717         if test "x${MOC}" = "x"; then
718                 AC_CHECK_PROG(MOC, moc, moc)
719         fi
720         AC_SUBST(MOC)
721 fi
722 AC_SUBST(QT_GUI_CFLAGS)
723 AC_SUBST(QT_GUI_LIBS)
724 AM_CONDITIONAL(GRAPHICS_QT_QPAINTER, test "x${graphics_qt_qpainter}" = "xyes")
725
726 ## gui
727 # gtk
728 AC_ARG_ENABLE(gui-gtk, [  --disable-gui-gtk                   disable gui type gtk ], gui_gtk=$enableval)
729 AM_CONDITIONAL(GUI_GTK, [test "x${gui_gtk}" = "xyes"])
730 # internal
731 AC_ARG_ENABLE(gui-internal, [  --disable-gui-internal              disable gui type internal], gui_internal=$enableval;gui_internal_reason="configure parameter")
732 AM_CONDITIONAL(GUI_INTERNAL, test "x${gui_internal}" = "xyes")
733 # win32
734 AC_ARG_ENABLE(gui-win32, [  --disable-gui-win32                 disable gui type win32], gui_win32=$enableval;gui_win32_reason="configure parameter")
735 AM_CONDITIONAL(GUI_WIN32, test "x${gui_win32}" = "xyes")
736
737 ## speech
738 # android
739 AC_ARG_ENABLE(speech-android, [  --disable-speech-android            disable speech type android], speech_android=$enableval;speech_android_reason="configure parameter")
740 AM_CONDITIONAL(SPEECH_ANDROID, test "x${speech_android}" = "xyes")
741 # cmdline
742 AC_ARG_ENABLE(speech-cmdline, [  --disable-speech-cmdline            disable speech type cmdline], speech_cmdline=$enableval;speech_cmdline_reason="configure parameter")
743 AM_CONDITIONAL(SPEECH_CMDLINE, test "x${speech_cmdline}" = "xyes")
744 # espeak
745 AC_ARG_ENABLE(speech-espeak, [  --disable-speech-espeak            disable speech type espeak], speech_espeak=$enableval;speech_espeak_reason="configure parameter")
746 AM_CONDITIONAL(SPEECH_ESPEAK, test "x${speech_espeak}" = "xyes")
747 # speech-dispatcher
748 AC_ARG_ENABLE(speech-speech-dispatcher, [  --disable-speech-speech-dispatcher  disable speech type speech-dispatcher], speech_speech_dispatcher=$enableval;speech_speech_dispatcher_reason="configure parameter")
749 if test "x$speech_speech_dispatcher" = "xyes"; then
750         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")
751 fi
752 AC_SUBST(SPEECHD_CFLAGS)
753 AC_SUBST(SPEECHD_LIBS)
754 AM_CONDITIONAL(SPEECH_SPEECH_DISPATCHER, test "x${speech_speech_dispatcher}" = "xyes")
755 AM_CONDITIONAL(SUPPORT_ESPEAK, test "x${support_espeak}" = "xyes")
756
757 ## vehicle
758 # android
759 AC_ARG_ENABLE(vehicle-android, [  --disable-vehicle-android             disable vehicle type android], vehicle_android=$enableval;vehicle_android_reason="configure parameter")
760 AM_CONDITIONAL(VEHICLE_ANDROID, test "x${vehicle_android}" = "xyes")
761 # demo
762 AC_ARG_ENABLE(vehicle-demo, [  --disable-vehicle-demo              disable vehicle type demo], vehicle_demo=$enableval;vehicle_demo_reason="configure parameter")
763 AM_CONDITIONAL(VEHICLE_DEMO, test "x${vehicle_demo}" = "xyes")
764 # file
765 AC_ARG_ENABLE(vehicle-file, [  --disable-vehicle-file              disable vehicle type file], vehicle_file=$enableval;vehicle_file_reason="configure parameter")
766 AM_CONDITIONAL(VEHICLE_FILE, test "x${vehicle_file}" = "xyes")
767 # gpsd
768 AC_ARG_ENABLE(vehicle-gpsd, [  --disable-vehicle-gpsd              disable vehicle type gpsd], vehicle_gpsd=$enableval;vehicle_gpsd_reason="configure parameter")
769 if test "x${vehicle_gpsd}" = xyes
770 then
771         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" )
772 fi
773 AC_SUBST(GPSD_CFLAGS)
774 AC_SUBST(GPSD_LIBS)
775 AM_CONDITIONAL(VEHICLE_GPSD, [test "x${vehicle_gpsd}" = "xyes"])
776 # gypsy
777 AC_ARG_ENABLE(vehicle-gypsy,[  --disable-vehicle-gypsy             disable vehicle type gypsy], vehicle_gypsy=$enableval;vehicle_gypsy_reason="configure parameter")
778 if test "x${vehicle_gypsy}" = "xyes"
779 then
780         PKG_CHECK_MODULES(GYPSY, gypsy, ,vehicle_gypsy=no;vehicle_gypsy_reason="package gypsy missing")
781 fi
782 AC_SUBST(GYPSY_CFLAGS)
783 AC_SUBST(GYPSY_LIBS)
784 AM_CONDITIONAL(VEHICLE_GYPSY, test "x${vehicle_gypsy}" = "xyes")
785 # null
786 AC_ARG_ENABLE(vehicle-null, [  --enable-vehicle-null             enable vehicle type null], vehicle_null=$enableval;vehicle_null_reason="configure parameter")
787 AM_CONDITIONAL(VEHICLE_NULL, test "x${vehicle_null}" = "xyes")
788 # wince
789 AC_ARG_ENABLE(vehicle-wince, [  --disable-vehicle-wince             disable vehicle type wince], vehicle_wince=$enableval;vehicle_wince_reason="configure parameter")
790 AM_CONDITIONAL(VEHICLE_WINCE, test "x${vehicle_wince}" = "xyes")
791 # iphone
792 AC_ARG_ENABLE(vehicle-iphone, [  --disable-vehicle-iphone              disable vehicle type iphone], vehicle_iphone=$enableval;vehicle_iphone_reason="configure parameter")
793 AM_CONDITIONAL(VEHICLE_IPHONE, test "x${vehicle_iphone}" = "xyes")
794 if test "x${vehicle_iphone}" = "xyes"
795 then
796         IPHONE_LIBS=-Wl,-framework,CoreLocation
797 fi
798 AC_SUBST(IPHONE_CFLAGS)
799 AC_SUBST(IPHONE_LIBS)
800 NAVIT_CFLAGS="$NAVIT_CFLAGS $GLIB_CFLAGS $GMODULE_CFLAGS"
801 NAVIT_LIBS="$NAVIT_LIBS $GLIB_LIBS $GMODULE_LIBS $LIBINTL"
802 AC_SUBST(NAVIT_CFLAGS)
803 AC_SUBST(NAVIT_LIBS)
804 AC_SUBST(WORDEXP_LIBS)
805 AC_SUBST(LIBC_LIBS)
806 AC_SUBST(WINDRES)
807
808 AC_CONFIG_FILES([
809 Makefile
810 navit/Makefile
811 navit/binding/Makefile
812 navit/binding/python/Makefile
813 navit/binding/dbus/Makefile
814 navit/map/Makefile
815 navit/map/mg/Makefile
816 navit/map/textfile/Makefile
817 navit/map/shapefile/Makefile
818 navit/map/filter/Makefile
819 navit/map/binfile/Makefile
820 navit/map/garmin/Makefile
821 navit/map/poi_geodownload/Makefile
822 navit/map/poi_geodownload/libmdb/Makefile
823 navit/map/poi_geodownload/libmdb/include/Makefile
824 navit/maptool/Makefile
825 navit/fib-1.1/Makefile
826 navit/font/Makefile
827 navit/font/freetype/Makefile
828 navit/fonts/Makefile
829 navit/graphics/Makefile
830 navit/graphics/android/Makefile
831 navit/graphics/gd/Makefile
832 navit/graphics/gtk_drawing_area/Makefile
833 navit/graphics/opengl/Makefile
834 navit/graphics/null/Makefile
835 navit/graphics/sdl/Makefile
836 navit/graphics/qt_qpainter/Makefile
837 navit/graphics/win32/Makefile
838 navit/gui/Makefile
839 navit/gui/gtk/Makefile
840 navit/gui/internal/Makefile
841 navit/gui/win32/Makefile
842 navit/osd/Makefile
843 navit/osd/core/Makefile
844 navit/speech/Makefile
845 navit/speech/android/Makefile
846 navit/speech/cmdline/Makefile
847 navit/speech/espeak/Makefile
848 navit/speech/speech_dispatcher/Makefile
849 navit/support/Makefile
850 navit/support/espeak/Makefile
851 navit/support/ezxml/Makefile
852 navit/support/glib/Makefile
853 navit/support/libc/Makefile
854 navit/support/libpng/Makefile
855 navit/support/win32/Makefile
856 navit/support/wordexp/Makefile
857 navit/support/zlib/Makefile
858 navit/vehicle/Makefile
859 navit/vehicle/android/Makefile
860 navit/vehicle/file/Makefile
861 navit/vehicle/gpsd/Makefile
862 navit/vehicle/gpsd_dbus/Makefile
863 navit/vehicle/gypsy/Makefile
864 navit/vehicle/null/Makefile
865 navit/vehicle/demo/Makefile
866 navit/vehicle/wince/Makefile
867 navit/vehicle/iphone/Makefile
868 navit/xpm/Makefile
869 navit/maps/Makefile
870 intl/Makefile
871 po/Makefile
872 ])
873 #src/data/garmin_img/Makefile
874
875 AC_OUTPUT
876
877
878 echo ""
879 echo ""
880 echo "Summary of your installation :"
881 # FIXME : maybe elaborate missing dependencies
882 if test x"$sdl" != xyes
883         then
884         sdl_failures="(libsdl maybe?) "
885 fi
886 if test x"$xmu" != xyes
887         then                
888         sdl_failures=$sdl_failures"libxmu "
889 fi        
890 if test x"$glut" != xyes
891        then
892         sdl_failures=$sdl_failures"glut "
893 fi
894 if test x"$glc" != xyes
895         then
896         sdl_failures=$sdl_failures"quesoglc "
897 fi
898 if test -z "$sdl_failures"
899         then
900         echo "OpenGL gui  : ENABLED, with $CEGUI_LIBS"
901         else
902                  echo "OpenGL gui  : DISABLED : you are missing $sdl_failures"
903 fi
904 if test x"$enable_hildon" = xyes
905         then
906         echo "Maemo/Hildon: ENABLED"
907         else
908         echo "Maemo/Hildon: DISABLED"
909 fi
910 if test x"${USE_GARMIN}" = xyes
911         then
912         if test "x$use_libgarmin" = "xyes"
913                 then
914                 echo "Garmin IMG  : ENABLED"
915                 else
916                 echo "Garmin IMG  : DISABLED (you don't have libgarmin)"
917         fi
918         else 
919                 echo "Garmin IMG  : DISABLED (you requested it)"
920 fi
921
922 if test x"$LIBINTL" = "x" ;then
923         nls_libs="system gettext support"
924 else
925         nls_libs="$LIBINTL"
926 fi
927 echo "Plugins:             $plugins ($plugins_reason)"
928 echo "Postgresql:          $postgresql ($postgresql_reason)"
929 echo "Samplemap:           $samplemap ($samplemap_reason)"
930 echo "NLS Support:         $enable_nls ($nls_libs)"
931 echo "Font renderers:"
932 echo "  freetype:          $font_freetype ($font_freetype_reason)"
933 echo "Graphics types:"
934 echo "  android:  $graphics_android ($graphics_android_reason)"
935 echo "  gtk_drawing_area:  $graphics_gtk_drawing_area ($graphics_gtk_drawing_area_reason)"
936 echo "  qt_qpainter:       $graphics_qt_qpainter ($graphics_qt_qpainter_reason)"
937 echo "  win32:             $graphics_win32 ($graphics_win32_reason)"
938 echo "  OpenGL:            $graphics_opengl ($graphics_opengl_reason)"
939 echo "  gd:                $graphics_gd ($graphics_gd_reason)"
940 echo "  sdl:               $graphics_sdl ($graphics_sdl_reason)"
941
942 echo "GUI types:"
943 echo "  gtk:               $gui_gtk ($gui_gtk_reason)"
944 echo "  internal:          $gui_internal ($gui_internal_reason)"
945 echo "  win32:             $gui_win32 ($gui_win32_reason)"
946
947 echo "Bindings:"
948 echo "  dbus:              $binding_dbus ($binding_dbus_reason)"
949 echo "  python:            $binding_python ($binding_python_reason)"
950
951 echo "Speech types:"
952 echo "  android:           $speech_android ($speech_android_reason)"
953 echo "  cmdline:           $speech_cmdline ($speech_cmdline_reason)"
954 echo "  espeak:            $speech_espeak ($speech_espeak_reason)"
955 echo "  speech_dispatcher: $speech_speech_dispatcher ($speech_speech_dispatcher_reason)"
956
957 echo "Vehicle types:"
958 echo "  android:           $vehicle_android ($vehicle_android_reason)"
959 echo "  demo:              $vehicle_demo ($vehicle_demo_reason)"
960 echo "  file:              $vehicle_file ($vehicle_file_reason)"
961 echo "  gpsd:              $vehicle_gpsd ($vehicle_gpsd_reason)"
962 echo "  gpsd_dbus:         $vehicle_gpsd_dbus ($vehicle_gpsd_dbus_reason)"
963 echo "  gypsy:             $vehicle_gypsy ($vehicle_gypsy_reason)"
964 echo "  null:              $vehicle_null ($vehicle_null_reason)"
965 echo "  wince:             $vehicle_wince ($vehicle_wince_reason)"
966 echo "  iphone:            $vehicle_iphone ($vehicle_iphone_reason)"
967
968 if  test "x${gtk2_pkgconfig}" != "xyes" -a "x${gui_win32}" != "xyes" -a "x${gui_internal}" != "xyes"
969 then
970         echo ""
971         echo "" 
972         echo "*** WARNING! you have no gui that can be built! ***"
973         echo "Please install the dependency for at least gtk or sdl gui"
974         echo "For more details, see the wiki at http://wiki.navit-project.org/"
975         echo "" 
976         exit 1
977 fi
978