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