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