1ce0553d6606e2e1b5ec7f4197a4a3e2b8647423
[navit-package] / configure.in
1 AC_INIT(navit, 0.0.2)
2 AM_INIT_AUTOMAKE
3 AM_CONFIG_HEADER(config.h)
4 AM_MAINTAINER_MODE
5
6 AC_GNU_SOURCE
7
8 AC_PROG_CC
9 if eval "test x$GCC = xyes"; then
10         CFLAGS="$CFLAGS -Wall -Wcast-align -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
11 fi
12 AC_PROG_CXX
13 if eval "test x$G++ = xyes"; then
14         CFLAGS="$CFLAGS -Wall -Wcast-align -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -D_GNU_SOURCE"
15 fi
16
17 PKG_CHECK_EXISTS
18
19 # CFLAGS="$CFLAGS -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"
20
21 AC_DISABLE_STATIC
22 AC_PROG_LIBTOOL
23
24 AC_ARG_ENABLE(avoid-unaligned, [  --enable-avoid-unaligned          avoid unaligned accesses], AVOID_UNALIGNED=$enableval, AVOID_UNALIGNED=no)
25 test x"${AVOID_UNALIGNED}" = xyes && AC_DEFINE(AVOID_UNALIGNED,[],Define to avoid unaligned access)
26
27 AC_ARG_ENABLE(avoid-float, [  --enable-avoid-float              avoid floating point calculations], AVOID_FLOAT=$enableval, AVOID_FLOAT=no)
28 test x"${AVOID_FLOAT}" = xyes && AC_DEFINE(AVOID_FLOAT,[],Define to avoid floating point)
29
30 AC_ARG_ENABLE(libgps, [  --disable-libgps             don't use libgps], USE_LIBGPS=$enableval, USE_LIBGPS=yes)
31
32
33 PKG_CHECK_MODULES(NAVIT, [glib-2.0 gmodule-2.0])
34 AC_SUBST(NAVIT_CFLAGS)
35 AC_SUBST(NAVIT_LIBS)
36
37 AC_ARG_ENABLE(gui-gtk, [  --disable-gui-gtk             don't create gui gtk ], MODULE_GUI_GTK=$enableval, MODULE_GUI_GTK=yes)
38 if test "x$MODULE_GUI_GTK" = "xyes"; then
39         PKG_CHECK_MODULES(GTK2, [gtk+-2.0], [gtk2_pkgconfig=yes], [gtk2_pkgconfig=no])
40         if test "x$gtk2_pkgconfig" = "xyes"; then
41                 AC_DEFINE(HAVE_GTK2, 1, [Define to 1 if you have imlib2])
42         fi
43 fi
44 AC_SUBST(GTK2_CFLAGS)
45 AC_SUBST(GTK2_LIBS)
46 AM_CONDITIONAL(GUI_GTK, [test "x$gtk2_pkgconfig" = "xyes"])
47 AM_CONDITIONAL(GRAPHICS_GTK_DRAWING_AREA, [test "x$gtk2_pkgconfig" = "xyes"])
48
49 PKG_CHECK_MODULES(FREETYPE2, [freetype2], [freetype2_pkgconfig=yes], [freetype2_pkgconfig=no])
50 if test "x$freetype2_pkgconfig" = "xyes"; then
51    AC_DEFINE(HAVE_FREETYPE2, 1, [Define to 1 if you have imlib2])
52 fi
53 AC_SUBST(FREETYPE2_CFLAGS)
54 AC_SUBST(FREETYPE2_LIBS)
55
56 PKG_CHECK_MODULES(IMLIB2, [imlib2], [imlib2_pkgconfig=yes], [imlib2_pkgconfig=no])
57 if test "x$imlib2_pkgconfig" = "xyes"; then
58    AC_DEFINE(HAVE_IMLIB2, 1, [Define to 1 if you have imlib2])
59 fi
60 AC_SUBST(IMLIB2_CFLAGS)
61 AC_SUBST(IMLIB2_LIBS)
62
63
64 AC_ARG_ENABLE(speech-speechd, [  --disable-speech-speechd             don't create speech speechd ], MODULE_SPEECH_SPEECHD=$enableval, MODULE_SPEECH_SPEECHD=yes)
65 if test "x$MODULE_SPEECH_SPEECHD" = "xyes"; then
66         AC_CHECK_HEADER(libspeechd.h, AC_DEFINE([HAVE_LIBSPEECHD],[],Define to 1 if you have the <libspeechd.h> header file.) SPEECHD_LIBS="-lspeechd" speechd=yes,  AC_MSG_WARN([*** no libspeechd.h -- Speech output disabled]))
67 fi
68 AC_SUBST(SPEECHD_CFLAGS)
69 AC_SUBST(SPEECHD_LIBS)
70 AM_CONDITIONAL(SPEECH_SPEECH_DISPATCHER, [test "x$speechd" = "xyes"])
71
72
73 AC_ARG_ENABLE(gui-sdl, [  --disable-gui-sdl             don't create gui sdl ], MODULE_GUI_SDL=$enableval, MODULE_GUI_SDL=yes)
74 if test "x$MODULE_GUI_SDL" = "xyes"; then
75         AC_CHECK_HEADER(
76                 SDL/SDL.h,
77                 AC_DEFINE(
78                         [HAVE_LIBSDL],
79                         [],
80                         Define to 1 if you have the <SDL/SDL.h> header file.
81                         )
82                         SDL_LIBS="-lSDL"
83                         sdl=yes,
84                 AC_MSG_WARN([*** no SDL/SDL.h -- SDL support disabled])
85         )
86 fi
87 AC_SUBST(SDL_CFLAGS)
88 AC_SUBST(SDL_LIBS)
89
90 AC_PREPROC_IFELSE(
91         CEGUI/CEGUI.h,
92         AC_DEFINE(
93                 [HAVE_CEGUI],
94                 [],
95                 Define to 1 if you have the <CEGUI/CEGUI.h> header file.
96                 )
97                 CEGUI_LIBS="-lCEGUIBase -lCEGUIOpenGLRenderer"
98                 CEGUI_CFLAGS="-I /usr/local/include/CEGUI -I /usr/include/CEGUI"
99                 cegui=yes,
100         AC_MSG_WARN([*** no CEGUI/CEGUI.h -- SDL support disabled])
101         exit 1
102 )
103 AC_SUBST(CEGUI_CFLAGS)
104 AC_SUBST(CEGUI_LIBS)
105
106 AC_CHECK_HEADER(
107         GL/gl.h,
108         AC_DEFINE(
109                 [HAVE_OPENGL],
110                 [],
111                 Define to 1 if you have the <GL/gl.h> header file.
112                 )
113                 OPENGL_LIBS="-lGL -lGLU"
114                 opengl=yes,
115         AC_MSG_WARN([*** no GL/gl.h -- opengl and SDL support disabled])
116 )
117 AC_SUBST(OPENGL_CFLAGS)
118 AC_SUBST(OPENGL_LIBS)
119
120 AC_CHECK_HEADER(
121         GL/glc.h,
122         AC_DEFINE(
123                 [HAVE_GLC],
124                 [],
125                 Define to 1 if you have the <GL/glc.h> header file.
126                 )
127                 GLC_LIBS="-lGLC"
128                 glc=yes,
129         AC_MSG_WARN([*** no GL/glc.h -- opengl and SDL support disabled])
130 )
131 AC_SUBST(GLC_CFLAGS)
132 AC_SUBST(GLC_LIBS)
133
134 AM_CONDITIONAL(GUI_SDL, [test "x$sdl" = "xyes" -a "x$cegui" = "xyes" -a "x$opengl" = "xyes" -a "x$glc" = "xyes" ])
135 AM_CONDITIONAL(GRAPHICS_OPENGL, [test "x$opengl" = "xyes" -a "x$glc" = "xyes" ])
136
137 if test x"${USE_LIBGPS}" = xyes
138 then
139         AC_CHECK_HEADER(gps.h, AC_DEFINE([HAVE_LIBGPS],[],Define to 1 if you have the <gps.h> header file.) GPSD_LIBS="-lgps" gpsd=yes,  AC_MSG_WARN([*** no gps.h -- gpsd support disabled]))
140 fi
141 AC_SUBST(GPSD_CFLAGS)
142 AC_SUBST(GPSD_LIBS)
143 AM_CONDITIONAL(VEHICLE_GPSD, [test "x$gpsd" = "xyes"])
144
145 AC_ARG_ENABLE(binding-python, [  --disable-binding-python             don't create binding python ], MODULE_BINDING_PYTHON=$enableval, MODULE_BINDING_PYTHON=yes)
146 if test "$cross_compiling" = no; then
147         if test "x$MODULE_BINDING_PYTHON" = "xyes"; then
148                 AC_PATH_PROG(_PATH_PYTHON,[python])
149                 dnl Libraries and flags for embedded Python.
150                 dnl FIXME: I wish there was a less icky way to get this.
151                 if test x"$_PATH_PYTHON" != x ; then
152                         AC_MSG_CHECKING(for Python linkage)
153                         py_prefix=`$_PATH_PYTHON -c 'import sys; print sys.prefix'`
154                         py_ver=`$_PATH_PYTHON -c 'import sys; print sys.version[[:3]]'`
155                         py_libdir="${py_prefix}/lib/python${py_ver}"
156                         PYTHON_CFLAGS="-I${py_prefix}/include/python${py_ver}"
157                         if test -f $py_libdir/config/Makefile ; then
158                                 py_libs=`grep '^LIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
159                                 py_libc=`grep '^LIBC=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
160                                 py_libm=`grep '^LIBM=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
161                                 py_liblocalmod=`grep '^LOCALMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
162                                 py_libbasemod=`grep '^BASEMODLIBS=' $py_libdir/config/Makefile | sed -e 's/^.*=//'`
163                                 PYTHON_LIBS="-L$py_libdir/config $py_libs $py_libc $py_libm -lpython$py_ver $py_liblocalmod $py_libbasemod"
164                                 PYTHON_LIBS=`echo $PYTHON_LIBS | sed -e 's/[ \\t]*/ /g'`
165                                 AC_DEFINE(HAVE_PYTHON, 1, [Define to 1 if you have python])
166                                 python=yes
167                                 AC_MSG_RESULT($py_libdir)
168                         else
169                                 AC_MSG_WARN([$py_libdir/config/Makefile missing, support for python disabled])
170                         fi
171                 fi
172         fi
173 else
174         AC_MSG_WARN([*** cross compiling, support for python disabled])
175 fi
176 AC_SUBST(PYTHON_CFLAGS)
177 AC_SUBST(PYTHON_LIBS)
178 AM_CONDITIONAL(BINDING_PYTHON, [test "x$python" = "xyes"])
179
180 # NLS
181
182 AC_ARG_ENABLE(nls,
183   [  --disable-nls        disable Native Language Support ( gettext/libintl )],
184    enable_nls=$enableval, enable_nls=yes)
185
186
187 INTLIBS=""
188 MOFILES=""
189 POFILES=""
190 LINGUAS=""
191
192 if test x$enable_nls = xyes; then
193
194   AC_CHECK_FUNC(gettext, [HAVEGETTEXT="yes"], 
195              AC_CHECK_LIB(intl, gettext, [INTLIBS="-lintl" HAVEGETTEXT="yes"],
196                          INTLIBS="" ))
197
198   AC_CHECK_PROG(XGETTEXT, xgettext, xgettext)
199   AC_CHECK_PROG(MSGMERGE, msgmerge, msgmerge)
200   AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt)
201
202   if test "$XGETTEXT" != ""; then 
203     if $XGETTEXT --help 2>&1 | grep illegal >/dev/null ; then
204         echo "xgettext isn't GNU version"
205         XGETTEXT=""
206     fi
207   fi
208
209   if test "$XGETTEXT" != "" -a "$HAVEGETTEXT" != ""; then
210      PO=""
211      if test "$LINGUAS" = ""; then
212            ling=` (cd po; /bin/ls *.po) `
213            for l in $ling; do
214                 lcode=`basename $l .po`
215                 LINGUAS="$LINGUAS$lcode "
216            done
217     fi
218     AC_DEFINE(ENABLE_NLS, [1], [NLS Please])
219     echo "xgettext and gettext() exist; will build i18n support for $LINGUAS"
220   else
221    LINGUAS=""
222    PO=""
223    echo "xgettext and libintl.a don't both exist; will not build i18n support"
224  fi
225  for lang in $LINGUAS; do
226     MOFILES="$MOFILES $lang.mo"
227  done
228  for lang in $LINGUAS; do
229     POFILES="$POFILES $lang.po"
230  done
231 fi
232
233 AC_SUBST(INTLIBS)
234 AC_SUBST(MOFILES)
235 AC_SUBST(POFILES)
236 AM_GNU_GETTEXT_VERSION
237 AM_GNU_GETTEXT
238
239 LIBS="$LIBS -lm -rdynamic"
240
241 PACKAGE=navit
242 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
243 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
244 AC_SUBST(PACKAGE)
245 AC_SUBST(VERSION)
246
247 AC_OUTPUT([
248 Makefile
249 src/Makefile
250 src/binding/Makefile
251 src/binding/python/Makefile
252 src/data/Makefile
253 src/data/mg/Makefile
254 src/data/textfile/Makefile
255 src/data/garmin_img/Makefile
256 src/data/poi_geodownload/Makefile
257 src/data/poi_geodownload/libmdb/Makefile
258 src/data/poi_geodownload/libmdb/include/Makefile
259 src/fib-1.1/Makefile
260 src/graphics/Makefile
261 src/graphics/gtk_drawing_area/Makefile
262 src/graphics/opengl/Makefile
263 src/graphics/null/Makefile
264 src/gui/Makefile
265 src/gui/gtk/Makefile
266 src/gui/sdl/Makefile
267 src/gui/sdl/datafiles/Makefile
268 src/osd/Makefile
269 src/osd/core/Makefile
270 src/speech/Makefile
271 src/speech/cmdline/Makefile
272 src/speech/speech_dispatcher/Makefile
273 src/vehicle/Makefile
274 src/vehicle/file/Makefile
275 src/vehicle/gpsd/Makefile
276 src/xpm/Makefile
277 intl/Makefile
278 po/Makefile
279 ])