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