]> git.street.me.uk Git - andy/viking.git/blob - configure.ac
[QA] Add ifdef macro for Google Directions related
[andy/viking.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.59)
5 AC_INIT(viking, 1.3.2)
6 AM_INIT_AUTOMAKE([dist-bzip2 dist-zip])
7 dnl AC_CONFIG_SRCDIR([src/main.c])
8 AC_CONFIG_HEADERS([src/config.h])
9 GTK_DOC_CHECK(1.0)
10
11 # Checks for programs.
12 AC_PROG_CC
13 AC_PROG_MAKE_SET
14 AC_PROG_RANLIB
15 AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums)
16
17 # I18N
18 GETTEXT_PACKAGE=viking
19 AC_SUBST(GETTEXT_PACKAGE)
20 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
21
22 AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
23
24 AM_GLIB_GNU_GETTEXT
25 IT_PROG_INTLTOOL([0.35.0])
26
27 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
28
29 dnl This will cause the automake generated makefiles to pass the
30 dnl correct flags to aclocal.
31 ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
32 AC_SUBST(ACLOCAL_AMFLAGS)
33
34 # Checks for header files.
35 AC_HEADER_STDC
36 AC_CHECK_HEADERS([malloc.h netdb.h netinet/in.h stdlib.h string.h sys/param.h sys/socket.h sys/types.h sys/wait.h unistd.h math.h utime.h X11/Xlib.h])
37
38 # Checks for typedefs, structures, and compiler characteristics.
39 AC_C_CONST
40 AC_TYPE_MODE_T
41
42 # Checks for library functions or symbols
43 AC_FUNC_STAT
44 AC_FUNC_STRTOD
45 AC_CHECK_FUNCS([floor gethostbyname memset mkdtemp pow realpath socket sqrt strcasecmp strchr strdup strncasecmp strtol strtoul])
46 AC_CHECK_LIB(m, tan)
47 AC_CHECK_LIB(z, inflate)
48 AC_CHECK_LIB(X11, XSetErrorHandler)
49
50 # Expat
51 AM_WITH_EXPAT
52
53 # Curl
54 LIBCURL_CHECK_CONFIG([yes],[],[],[AC_MSG_ERROR([libcurl is needed but not found])])
55
56 # gdk-pixbuf-csource
57 AC_CHECK_PROG([GDK_PIXBUF_CSOURCE],gdk-pixbuf-csource,[yes])
58 if test "x$GDK_PIXBUF_CSOURCE" != "xyes"
59 then
60   AC_MSG_ERROR([gdk-pixbuf-csource is needed but not found])
61 fi
62
63 dnl  ------------------
64 dnl | Pkgconfig checks |---------------------------------------
65 dnl  ------------------
66
67 PKG_CHECK_MODULES(PACKAGE, [
68         glib-2.0          >= 2.14
69         gthread-2.0       >= 2.2
70         gtk+-2.0          >= 2.12
71         gio-2.0           >= 2.12
72 ])
73
74 AC_SUBST(PACKAGE_CFLAGS)
75 AC_SUBST(PACKAGE_LIBS)
76
77 dnl  -------------
78 dnl | User Manual |---------------------------------------
79 dnl  -------------
80 GNOME_DOC_INIT
81
82 dnl ---------------------------------------------------------------------------
83 dnl - Use deprecated options (default enabled for devs, disabled in releases) 
84 dnl ---------------------------------------------------------------------------
85
86 AC_ARG_ENABLE(deprecations,
87               [AC_HELP_STRING([--enable-deprecations],
88                               [warn about deprecated usages [default=no]])],
89                               [ac_cv_enable_deprecations=$enableval],
90                               [ac_cv_enable_deprecations=no])
91 AC_CACHE_CHECK([whether to enable deprecated features],
92                [ac_cv_enable_deprecations], [ac_cv_enable_deprecations=no])
93
94 if test "x$ac_cv_enable_deprecations" = "xyes"; then
95    DISABLE_DEPRECATED_CFLAGS="\
96 -DG_DISABLE_SINGLE_INCLUDES \
97 -DGSEAL_ENABLE \
98 -DG_DISABLE_DEPRECATED \
99 -DGDK_DISABLE_DEPRECATED \
100 -DGDK_PIXBUF_DISABLE_DEPRECATED \
101 -DGTK_DISABLE_SINGLE_INCLUDES \
102 -DGTK_DISABLE_DEPRECATED"
103    CPPFLAGS="$CPPFLAGS $DISABLE_DEPRECATED_CFLAGS"
104 fi
105
106 # Options
107 AC_ARG_ENABLE(alphabetized-trw, AC_HELP_STRING([--enable-alphabetized-trw],
108               [enable alphabetized track & waypoints (default is enable)]),
109               [ac_cv_enable_alpha_trw=$enableval],
110               [ac_cv_enable_alpha_trw=yes])
111 AC_CACHE_CHECK([whether to enable alphabetized track & waypoint],
112                [ac_cv_enable_alpha_trw], [ac_cv_enable_alpha_trw=yes])
113 case $ac_cv_enable_alpha_trw in
114   yes)
115     AC_DEFINE(VIK_CONFIG_ALPHABETIZED_TRW, [], [NO ALPHABETIZED TRW])
116     ;;
117 esac
118
119 AC_ARG_ENABLE(bing, AC_HELP_STRING([--enable-bing],
120               [enable Bing stuff (default is enable)]),
121               [ac_cv_enable_bing=$enableval],
122               [ac_cv_enable_bing=yes])
123 AC_CACHE_CHECK([whether to enable Bing stuff],
124                [ac_cv_enable_bing], [ac_cv_enable_bing=yes])
125 case $ac_cv_enable_bing in
126   yes)
127     AC_DEFINE(VIK_CONFIG_BING, [], [BING STUFF])
128     ;;
129 esac
130 AM_CONDITIONAL([BING], [test x$ac_cv_enable_bing = xyes])
131
132 AC_ARG_ENABLE(google, AC_HELP_STRING([--enable-google],
133               [enable Google stuff (Goto and External Open) (default is enable)]),
134               [ac_cv_enable_google=$enableval],
135               [ac_cv_enable_google=yes])
136 AC_CACHE_CHECK([whether to enable Google stuff],
137                [ac_cv_enable_google], [ac_cv_enable_google=yes])
138 case $ac_cv_enable_google in
139   yes)
140     AC_DEFINE(VIK_CONFIG_GOOGLE, [], [GOOGLE STUFF])
141     ;;
142 esac
143 AM_CONDITIONAL([GOOGLE], [test x$ac_cv_enable_google = xyes])
144
145
146 AC_ARG_ENABLE(google-directions, AC_HELP_STRING([--enable-google-directions],
147               [enable Google Directions (default is disabled because it does not work)]),
148               [ac_cv_enable_google_directions=$enableval],
149               [ac_cv_enable_google_directions=no])
150 AC_CACHE_CHECK([whether to enable Google directions],
151                [ac_cv_enable_google_directions], [ac_cv_enable_google_directions=yes])
152 case $ac_cv_enable_google_directions in
153   yes)
154     AC_DEFINE(VIK_CONFIG_GOOGLE_DIRECTIONS, [], [GOOGLE DIRECTIONS])
155     ;;
156 esac
157
158 AC_ARG_ENABLE(terraserver, AC_HELP_STRING([--enable-terraserver],
159               [enable Terraserver stuff (default is enable)]),
160               [ac_cv_enable_terraserver=$enableval],
161               [ac_cv_enable_terraserver=yes])
162 AC_CACHE_CHECK([whether to enable Terraserver stuff],
163                [ac_cv_enable_terraserver], [ac_cv_enable_terraserver=yes])
164 case $ac_cv_enable_terraserver in
165   yes)
166     AC_DEFINE(VIK_CONFIG_TERRASERVER, [], [TERRASERVER STUFF])
167     ;;
168 esac
169 AM_CONDITIONAL([TERRASERVER], [test x$ac_cv_enable_terraserver = xyes])
170
171 AC_ARG_ENABLE(expedia, AC_HELP_STRING([--enable-expedia],
172               [enable Expedia stuff (default is disable)]),
173               [ac_cv_enable_expedia=$enableval],
174               [ac_cv_enable_expedia=no])
175 AC_CACHE_CHECK([whether to enable Expedia stuff],
176                [ac_cv_enable_expedia], [ac_cv_enable_expedia=yes])
177 case $ac_cv_enable_expedia in
178   yes)
179     AC_DEFINE(VIK_CONFIG_EXPEDIA, [], [EXPEDIA STUFF])
180     ;;
181 esac
182 AM_CONDITIONAL([EXPEDIA], [test x$ac_cv_enable_expedia = xyes])
183
184 # OpenStreetMap http://www.openstreetmap.org/
185 AC_ARG_ENABLE(openstreetmap, AC_HELP_STRING([--enable-openstreetmap],
186               [enable OpenStreetMap stuff (default is enable)]),
187               [ac_cv_enable_openstreetmap=$enableval],
188               [ac_cv_enable_openstreetmap=yes])
189 AC_CACHE_CHECK([whether to enable OpenStreetMap stuff],
190                [ac_cv_enable_openstreetmap], [ac_cv_enable_openstreetmap=yes])
191 case $ac_cv_enable_openstreetmap in
192   yes)
193     AC_DEFINE(VIK_CONFIG_OPENSTREETMAP, [], [OPENSTREETMAP STUFF])
194     ;;
195 esac
196 AM_CONDITIONAL([OPENSTREETMAP], [test x$ac_cv_enable_openstreetmap = xyes])
197
198 # BlueMarble
199 AC_ARG_ENABLE(bluemarble, AC_HELP_STRING([--enable-bluemarble],
200               [enable BlueMarble stuff (default is enable)]),
201               [ac_cv_enable_bluemarble=$enableval],
202               [ac_cv_enable_bluemarble=yes])
203 AC_CACHE_CHECK([whether to enable BlueMarble stuff],
204                [ac_cv_enable_bluemarble], [ac_cv_enable_bluemarble=yes])
205 case $ac_cv_enable_bluemarble in
206   yes)
207     AC_DEFINE(VIK_CONFIG_BLUEMARBLE, [], [BLUEMARBLE STUFF])
208     ;;
209 esac
210 AM_CONDITIONAL([BLUEMARBLE], [test x$ac_cv_enable_bluemarble = xyes])
211
212 # GeoNames http://www.geonames.org/
213 AC_ARG_ENABLE(geonames, AC_HELP_STRING([--enable-geonames],
214               [enable Geonames stuff (default is enable)]),
215               [ac_cv_enable_geonames=$enableval],
216               [ac_cv_enable_geonames=yes])
217 AC_CACHE_CHECK([whether to enable Geonames stuff],
218                [ac_cv_enable_geonames], [ac_cv_enable_geonames=yes])
219 case $ac_cv_enable_geonames in
220   yes)
221     AC_DEFINE(VIK_CONFIG_GEONAMES, [], [GEONAMES STUFF])
222     ;;
223 esac
224 AM_CONDITIONAL([GEONAMES], [test x$ac_cv_enable_geonames = xyes])
225
226 AC_ARG_ENABLE(geocaches, AC_HELP_STRING([--enable-geocaches],
227               [enable Geocaches Acquire (default is disable).]),
228               [ac_cv_enable_geocaches=$enableval],
229               [ac_cv_enable_geocaches=no])
230 AC_CACHE_CHECK([whether to enable Geocaches Acquire],
231                [ac_cv_enable_geocaches], [ac_cv_enable_geocaches=yes])
232 case $ac_cv_enable_geocaches in
233   yes)
234     AC_DEFINE(VIK_CONFIG_GEOCACHES, [], [GEOCACHES STUFF])
235     ;;
236 esac
237 AM_CONDITIONAL([GEOCACHES], [test x$ac_cv_enable_geocaches = xyes])
238
239 AC_ARG_ENABLE(geotag, AC_HELP_STRING([--enable-geotag],
240               [enable Geotag Support (default is enable).]),
241               [ac_cv_enable_geotag=$enableval],
242               [ac_cv_enable_geotag=yes])
243 AC_CACHE_CHECK([whether to enable Geotag Support],
244                [ac_cv_enable_geotag], [ac_cv_enable_geotag=yes])
245 case $ac_cv_enable_geotag in
246   yes)
247     AC_CHECK_LIB(exif,exif_loader_new,,AC_MSG_ERROR([libexif is needed for Geotag features[,] but is not found. The feature can be disabled with --disable-geotag]))
248     AC_DEFINE(VIK_CONFIG_GEOTAG, [], [GEOTAG STUFF])
249     ;;
250 esac
251 AM_CONDITIONAL([GEOTAG], [test x$ac_cv_enable_geotag = xyes])
252
253 AC_ARG_ENABLE(spotmaps, AC_HELP_STRING([--enable-spotmaps],
254               [enable SPOTMaps map (default is enable).]),
255               [ac_cv_enable_spotmaps=$enableval],
256               [ac_cv_enable_spotmaps=yes])
257 AC_CACHE_CHECK([whether to enable SPOTMaps map],
258                [ac_cv_enable_spotmaps], [ac_cv_enable_spotmaps=yes])
259 case $ac_cv_enable_spotmaps in
260   yes)
261     AC_DEFINE(VIK_CONFIG_SPOTMAPS, [], [SPOTMAPS STUFF])
262     ;;
263 esac
264 AM_CONDITIONAL([SPOTMAPS], [test x$ac_cv_enable_spotmaps = xyes])
265
266
267 AC_ARG_ENABLE(dem24k, AC_HELP_STRING([--enable-dem24k],
268               [enable USGS 24k DEM (default is disable) download source. Requires dem24k.pl script in path.]),
269               [ac_cv_enable_dem24k=$enableval],
270               [ac_cv_enable_dem24k=no])
271 AC_CACHE_CHECK([whether to enable USGS DEM 24k download source],
272                [ac_cv_enable_dem24k], [ac_cv_enable_dem24k=yes])
273 case $ac_cv_enable_dem24k in
274   yes)
275     AC_DEFINE(VIK_CONFIG_DEM24K, [], [DEM24K STUFF])
276     ;;
277 esac
278 AM_CONDITIONAL([DEM24K], [test x$ac_cv_enable_dem24k = xyes])
279
280 # Realtime GPS tracking
281 AC_ARG_ENABLE(realtime-gps-tracking, AC_HELP_STRING([--enable-realtime-gps-tracking],
282               [enable realtime GPS tracking (default is enable)]),
283               [ac_cv_enable_realtimegpstracking=$enableval],
284               [ac_cv_enable_realtimegpstracking=yes])
285 AC_CACHE_CHECK([whether to enable Realtime GPS Tracking stuff],
286                [ac_cv_enable_realtimegpstracking], [ac_cv_enable_realtimegpstracking=yes])
287 case $ac_cv_enable_realtimegpstracking in
288   yes)
289     AC_CHECK_LIB(gps,gps_close,,AC_MSG_ERROR([libgps is needed for Realtime GPS Tracking feature[,] but not found. The feature can be disable with --disable-realtime-gps-tracking]))
290     AC_DEFINE(VIK_CONFIG_REALTIME_GPS_TRACKING, [], [REALTIME GPS TRACKING STUFF])
291     ;;
292 esac
293 AM_CONDITIONAL([REALTIME_GPS_TRACKING], [test x$ac_cv_enable_realtimegpstracking = xyes])
294
295 AC_ARG_WITH(search,
296             [AC_HELP_STRING([--with-search],
297                             [specify google or geonames for searching (default is google)])],
298             [case "x$withval" in
299                "xgoogle")
300                  VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GOOGLE
301                  ;;
302                "xgeonames")
303                  VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GEONAMES
304                  ;;
305                *)
306                 AC_MSG_ERROR([Please, set a value for search method])
307              esac],
308              [VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GOOGLE])
309 AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH_GOOGLE, 1,
310                    [Id. for searching via GOOGLE])
311 AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH_GEONAMES, 2,
312                    [Id. for searching via GEONAMES])
313 AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH, ${VIK_CONFIG_SEARCH},
314                    [Method for the search])
315
316
317 AC_ARG_WITH(mapcache,
318             [AC_HELP_STRING([--with-mapcache],
319                             [specify the size of the map cache in MB (default is 128)])],
320             [if test "x$withval" = "xno"; then
321                 VIK_CONFIG_MAPCACHE_SIZE=0;
322              elif test "x$withval" = "xyes"; then
323                 AC_MSG_ERROR([Please, set a value for size of the map cache in MB])
324              else
325                 VIK_CONFIG_MAPCACHE_SIZE=${withval}
326              fi],
327              [VIK_CONFIG_MAPCACHE_SIZE=128])
328 AC_DEFINE_UNQUOTED(VIK_CONFIG_MAPCACHE_SIZE, ${VIK_CONFIG_MAPCACHE_SIZE},
329                    [Size of the map cache])
330
331
332 AC_ARG_WITH(tileage,
333             [AC_HELP_STRING([--with-tileage],
334                             [specify the age of a tile before checking it (default is 7 days)])],
335             [if test "x$withval" = "xno"; then
336                 VIK_CONFIG_DEFAULT_TILE_AGE=0;
337              elif test "x$withval" = "xyes"; then
338                 AC_MSG_ERROR([Please, set a value for age of tiles])
339              else
340                 VIK_CONFIG_DEFAULT_TILE_AGE=${withval}
341              fi],
342              [VIK_CONFIG_DEFAULT_TILE_AGE=604800])
343 AC_DEFINE_UNQUOTED(VIK_CONFIG_DEFAULT_TILE_AGE, ${VIK_CONFIG_DEFAULT_TILE_AGE},
344                    [Age of tiles before checking it (in seconds)])
345
346 dnl man pages processing
347 DB2MAN_XSL=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
348 AC_SUBST(DB2MAN_XSL)
349 AC_PATH_PROG(XP,xsltproc)
350 AM_CONDITIONAL([HAVE_XSLTPROC],[test "x$XP" != "x"])
351 AM_CONDITIONAL([GEN_MANPAGES],[test "x$XP" != "x" && test -r "$DB2MAN_XSL"])
352
353 dnl This will cause the automake generated makefiles to pass the
354 dnl correct flags to aclocal.
355 ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
356 AC_SUBST(ACLOCAL_AMFLAGS)
357
358 AM_CONDITIONAL([VIKING_DOC], test x${enable_gtk_doc} = xyes)
359
360 # Configuration
361 AC_CONFIG_FILES([
362                 Makefile
363                 src/Makefile
364                 src/icons/Makefile
365                 po/Makefile.in
366                 data/Makefile
367                 test/Makefile])
368 AM_COND_IF([VIKING_DOC],
369         [AC_CONFIG_FILES([
370                 help/Makefile
371                 doc/Makefile
372                 doc/reference/Makefile
373                 doc/examples/Makefile])])
374
375 AC_OUTPUT([
376            viking.spec
377            ])
378
379 dnl Output the configuration summary
380 echo ""
381 echo "==========================================="
382 echo "$PACKAGE $VERSION"
383 echo "-------------------------------------------"
384 echo "Alphabetized track & waypoints   : $ac_cv_enable_alpha_trw"
385 echo "Bing Maps                        : $ac_cv_enable_bing"
386 echo "Google Goto                      : $ac_cv_enable_google"
387 echo "Google Directions (Broken)       : $ac_cv_enable_google_directions"
388 echo "Terraserver Maps                 : $ac_cv_enable_terraserver"
389 echo "Expedia Maps                     : $ac_cv_enable_expedia"
390 echo "Open Street Map                  : $ac_cv_enable_openstreetmap"
391 echo "BlueMarble                       : $ac_cv_enable_bluemarble"
392 echo "SPOTMaps                         : $ac_cv_enable_spotmaps"
393 echo "Geonames                         : $ac_cv_enable_geonames"
394 echo "Geocaches Acquire                : $ac_cv_enable_geocaches"
395 echo "Geotag Support                   : $ac_cv_enable_geotag"
396 echo "USGS 24k DEM                     : $ac_cv_enable_dem24k"
397 echo "Realtime GPS Tracking            : $ac_cv_enable_realtimegpstracking"
398 echo "Size of map cache (in memory)    : ${VIK_CONFIG_MAPCACHE_SIZE}"
399 echo "Age of tiles (in seconds)        : ${VIK_CONFIG_DEFAULT_TILE_AGE}"
400 echo "Documentation (+HTML)            : ${enable_gtk_doc} (HTML: ${enable_gtk_doc_html})"
401 echo "-------------------------------------------"
402 echo ""
403 echo "Configure finished, type 'make' to build."
404