]> git.street.me.uk Git - andy/viking.git/blame - configure.ac
Fix: warning 'draw-mode' message does not display
[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)
c74aa9cf 5AC_INIT(viking, 0.9.95)
9903c388
EB
6AM_INIT_AUTOMAKE()
7dnl AC_CONFIG_SRCDIR([src/main.c])
8fe95819 8AC_CONFIG_HEADERS([src/config.h])
9903c388
EB
9
10# Checks for programs.
972d7785 11AC_PROG_CC
9903c388 12AC_PROG_MAKE_SET
b6e6dfbd 13AC_PROG_RANLIB
8f661d80 14AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums)
9903c388 15
a5daec1c
GB
16# I18N
17GETTEXT_PACKAGE=viking
18AC_SUBST(GETTEXT_PACKAGE)
19AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
20
21AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
22
23AM_GLIB_GNU_GETTEXT
d44b1562 24IT_PROG_INTLTOOL([0.35.0])
a5daec1c
GB
25
26AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
27
28dnl This will cause the automake generated makefiles to pass the
29dnl correct flags to aclocal.
30ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
31AC_SUBST(ACLOCAL_AMFLAGS)
32
9903c388
EB
33# Checks for header files.
34AC_HEADER_STDC
7de36baf 35AC_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])
9903c388
EB
36
37# Checks for typedefs, structures, and compiler characteristics.
38AC_C_CONST
39AC_TYPE_MODE_T
40
41# Checks for library functions.
42AC_FUNC_STAT
43AC_FUNC_STRTOD
c44594ee 44AC_CHECK_FUNCS([floor gethostbyname memset mkdtemp pow realpath socket sqrt strcasecmp strchr strdup strncasecmp strtol strtoul])
9903c388 45
dad55b79 46# Expat
fa1b5a5f
GB
47AM_WITH_EXPAT
48
3292ba8b 49# Curl
f901dcdf 50LIBCURL_CHECK_CONFIG([yes],[],[],[AC_MSG_ERROR([libcurl is needed but not found])])
3292ba8b 51
bf0922c7 52# gdk-pixbuf-csource
fa1b5a5f
GB
53AC_CHECK_PROG([GDK_PIXBUF_CSOURCE],gdk-pixbuf-csource,[yes])
54if test $GDK_PIXBUF_CSOURCE != "yes"
55then
56 AC_MSG_ERROR([gdk-pixbuf-csource is needed but not found])
57fi
58
bf0922c7
GB
59dnl ------------------
60dnl | Pkgconfig checks |---------------------------------------
61dnl ------------------
62
63PKG_CHECK_MODULES(PACKAGE, [
64 glib-2.0 >= 2.12
65 gthread-2.0 >= 2.2
274e14bd 66 gtk+-2.0 >= 2.12
314084b8 67 gio-2.0 >= 2.12
bf0922c7
GB
68])
69
70AC_SUBST(PACKAGE_CFLAGS)
71AC_SUBST(PACKAGE_LIBS)
72
f8b8a0b5
GB
73dnl -------------
74dnl | User Manual |---------------------------------------
75dnl -------------
76GNOME_DOC_INIT
dad55b79 77
79452f0e
GB
78###############
79# Depecations #
80###############
81AC_ARG_ENABLE(deprecations,
82 [AC_HELP_STRING([--enable-deprecations],
83 [warn about deprecated usages [default=no]])],,
84 [enable_deprecations=no])
85
86if test "x$enable_deprecations" = "xyes"; then
87 DISABLE_DEPRECATED_CFLAGS="\
88-DG_DISABLE_DEPRECATED \
89-DGDK_DISABLE_DEPRECATED \
90-DGTK_DISABLE_DEPRECATED \
91-DGDK_PIXBUF_DISABLE_DEPRECATED"
92 AC_SUBST(DISABLE_DEPRECATED_CFLAGS)
93fi
dad55b79 94
734652bf
EB
95# Options
96AC_ARG_ENABLE(alphabetized-trw, AC_HELP_STRING([--enable-alphabetized-trw],
97 [enable alphabetized track & waypoints (default is enable)]),
98 [ac_cv_enable_alpha_trw=$enableval],
99 [ac_cv_enable_alpha_trw=yes])
100AC_CACHE_CHECK([whether to enable alphabetized track & waypoint],
101 [ac_cv_enable_alpha_trw], [ac_cv_enable_alpha_trw=yes])
102case $ac_cv_enable_alpha_trw in
103 yes)
104 AC_DEFINE(VIK_CONFIG_ALPHABETIZED_TRW, [], [NO ALPHABETIZED TRW])
105 ;;
106esac
107
cdcaf41c
QT
108AC_ARG_ENABLE(google, AC_HELP_STRING([--enable-google],
109 [enable Google stuff (default is enable)]),
110 [ac_cv_enable_google=$enableval],
111 [ac_cv_enable_google=yes])
112AC_CACHE_CHECK([whether to enable Google stuff],
113 [ac_cv_enable_google], [ac_cv_enable_google=yes])
114case $ac_cv_enable_google in
115 yes)
116 AC_DEFINE(VIK_CONFIG_GOOGLE, [], [GOOGLE STUFF])
117 ;;
118esac
119AM_CONDITIONAL([GOOGLE], [test x$ac_cv_enable_google = xyes])
120
121AC_ARG_ENABLE(terraserver, AC_HELP_STRING([--enable-terraserver],
122 [enable Terraserver stuff (default is enable)]),
123 [ac_cv_enable_terraserver=$enableval],
124 [ac_cv_enable_terraserver=yes])
125AC_CACHE_CHECK([whether to enable Terraserver stuff],
126 [ac_cv_enable_terraserver], [ac_cv_enable_terraserver=yes])
127case $ac_cv_enable_terraserver in
128 yes)
129 AC_DEFINE(VIK_CONFIG_TERRASERVER, [], [TERRASERVER STUFF])
130 ;;
131esac
132AM_CONDITIONAL([TERRASERVER], [test x$ac_cv_enable_terraserver = xyes])
133
134AC_ARG_ENABLE(expedia, AC_HELP_STRING([--enable-expedia],
06f31fd5 135 [enable Expedia stuff (default is disable)]),
cdcaf41c 136 [ac_cv_enable_expedia=$enableval],
06f31fd5 137 [ac_cv_enable_expedia=no])
cdcaf41c
QT
138AC_CACHE_CHECK([whether to enable Expedia stuff],
139 [ac_cv_enable_expedia], [ac_cv_enable_expedia=yes])
140case $ac_cv_enable_expedia in
141 yes)
142 AC_DEFINE(VIK_CONFIG_EXPEDIA, [], [EXPEDIA STUFF])
143 ;;
144esac
145AM_CONDITIONAL([EXPEDIA], [test x$ac_cv_enable_expedia = xyes])
146
ca9eb04a
GB
147# OpenStreetMap http://www.openstreetmap.org/
148AC_ARG_ENABLE(openstreetmap, AC_HELP_STRING([--enable-openstreetmap],
149 [enable OpenStreetMap stuff (default is enable)]),
150 [ac_cv_enable_openstreetmap=$enableval],
151 [ac_cv_enable_openstreetmap=yes])
152AC_CACHE_CHECK([whether to enable OpenStreetMap stuff],
153 [ac_cv_enable_openstreetmap], [ac_cv_enable_openstreetmap=yes])
154case $ac_cv_enable_openstreetmap in
155 yes)
156 AC_DEFINE(VIK_CONFIG_OPENSTREETMAP, [], [OPENSTREETMAP STUFF])
157 ;;
158esac
159AM_CONDITIONAL([OPENSTREETMAP], [test x$ac_cv_enable_openstreetmap = xyes])
160
96c3f0d5
GB
161# BlueMarble
162AC_ARG_ENABLE(bluemarble, AC_HELP_STRING([--enable-bluemarble],
163 [enable BlueMarble stuff (default is enable)]),
164 [ac_cv_enable_bluemarble=$enableval],
165 [ac_cv_enable_bluemarble=yes])
166AC_CACHE_CHECK([whether to enable BlueMarble stuff],
167 [ac_cv_enable_bluemarble], [ac_cv_enable_bluemarble=yes])
168case $ac_cv_enable_bluemarble in
169 yes)
170 AC_DEFINE(VIK_CONFIG_BLUEMARBLE, [], [BLUEMARBLE STUFF])
171 ;;
172esac
173AM_CONDITIONAL([BLUEMARBLE], [test x$ac_cv_enable_bluemarble = xyes])
174
da03b29d
GB
175# GeoNames http://www.geonames.org/
176AC_ARG_ENABLE(geonames, AC_HELP_STRING([--enable-geonames],
177 [enable Geonames stuff (default is enable)]),
178 [ac_cv_enable_geonames=$enableval],
179 [ac_cv_enable_geonames=yes])
180AC_CACHE_CHECK([whether to enable Geonames stuff],
181 [ac_cv_enable_geonames], [ac_cv_enable_geonames=yes])
182case $ac_cv_enable_geonames in
183 yes)
184 AC_DEFINE(VIK_CONFIG_GEONAMES, [], [GEONAMES STUFF])
185 ;;
186esac
187AM_CONDITIONAL([GEONAMES], [test x$ac_cv_enable_geonames = xyes])
188
1ef9e637 189AC_ARG_ENABLE(geocaches, AC_HELP_STRING([--enable-geocaches],
a0d39f7e 190 [enable Geocaches Acquire (default is disable).]),
1ef9e637
QT
191 [ac_cv_enable_geocaches=$enableval],
192 [ac_cv_enable_geocaches=no])
193AC_CACHE_CHECK([whether to enable Geocaches Acquire],
194 [ac_cv_enable_geocaches], [ac_cv_enable_geocaches=yes])
195case $ac_cv_enable_geocaches in
196 yes)
197 AC_DEFINE(VIK_CONFIG_GEOCACHES, [], [GEOCACHES STUFF])
198 ;;
199esac
200AM_CONDITIONAL([GEOCACHES], [test x$ac_cv_enable_geocaches = xyes])
201
8c721f83
EB
202
203AC_ARG_ENABLE(dem24k, AC_HELP_STRING([--enable-dem24k],
204 [enable USGS 24k DEM (default is disable) download source. Requires dem24k.pl script in path.]),
205 [ac_cv_enable_dem24k=$enableval],
206 [ac_cv_enable_dem24k=no])
207AC_CACHE_CHECK([whether to enable USGS DEM 24k download source],
208 [ac_cv_enable_dem24k], [ac_cv_enable_dem24k=yes])
209case $ac_cv_enable_dem24k in
210 yes)
211 AC_DEFINE(VIK_CONFIG_DEM24K, [], [DEM24K STUFF])
212 ;;
213esac
214AM_CONDITIONAL([DEM24K], [test x$ac_cv_enable_dem24k = xyes])
215
001a86db
QT
216# Realtime GPS tracking
217AC_ARG_ENABLE(realtime-gps-tracking, AC_HELP_STRING([--enable-realtime-gps-tracking],
218 [enable realtime GPS tracking (default is enable)]),
219 [ac_cv_enable_realtimegpstracking=$enableval],
220 [ac_cv_enable_realtimegpstracking=yes])
221AC_CACHE_CHECK([whether to enable Realtime GPS Tracking stuff],
222 [ac_cv_enable_realtimegpstracking], [ac_cv_enable_realtimegpstracking=yes])
223case $ac_cv_enable_realtimegpstracking in
224 yes)
8956d2ef
QT
225 AC_CHECK_LIB(gps,gps_poll,,AC_MSG_ERROR([libgps is needed for Realtime GPS Tracking feature[,] but not found. The feature can be disable with --disable-realtime-gps-tracking]))
226 AC_DEFINE(VIK_CONFIG_REALTIME_GPS_TRACKING, [], [REALTIME GPS TRACKING STUFF])
001a86db
QT
227 ;;
228esac
229AM_CONDITIONAL([REALTIME_GPS_TRACKING], [test x$ac_cv_enable_realtimegpstracking = xyes])
bec818c4
GB
230# Viking supports two incompatibles versions of GPSd: 2.39 and 2.90
231# But GPSd does not provides easy way to test features.
232if test x$ac_cv_enable_realtimegpstracking = xyes
233then
234 AC_CHECK_FUNCS(gps_stream)
a263d172 235 AC_CHECK_FUNCS(gps_open_r)
bec818c4 236fi
001a86db 237
ba4a5e11
GB
238AC_ARG_WITH(search,
239 [AC_HELP_STRING([--with-search],
240 [specify google or geonames for searching (default is google)])],
241 [case "x$withval" in
242 "xgoogle")
243 VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GOOGLE
244 ;;
245 "xgeonames")
246 VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GEONAMES
247 ;;
248 *)
249 AC_MSG_ERROR([Please, set a value for search method])
250 esac],
251 [VIK_CONFIG_SEARCH=VIK_CONFIG_SEARCH_GOOGLE])
252AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH_GOOGLE, 1,
253 [Id. for searching via GOOGLE])
254AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH_GEONAMES, 2,
255 [Id. for searching via GEONAMES])
256AC_DEFINE_UNQUOTED(VIK_CONFIG_SEARCH, ${VIK_CONFIG_SEARCH},
257 [Method for the search])
258
259
1bc9b120
GB
260AC_ARG_WITH(mapcache,
261 [AC_HELP_STRING([--with-mapcache],
262 [specify the size of the map cache (default is 50331648)])],
263 [if test "x$withval" = "xno"; then
264 VIK_CONFIG_MAPCACHE_SIZE=0;
265 elif test "x$withval" = "xyes"; then
266 AC_MSG_ERROR([Please, set a value for size of the map cache])
267 else
268 VIK_CONFIG_MAPCACHE_SIZE=${withval}
269 fi],
270 [VIK_CONFIG_MAPCACHE_SIZE=50331648])
271AC_DEFINE_UNQUOTED(VIK_CONFIG_MAPCACHE_SIZE, ${VIK_CONFIG_MAPCACHE_SIZE},
272 [Size of the map cache])
273
5e108809
GB
274
275AC_ARG_WITH(tileage,
276 [AC_HELP_STRING([--with-tileage],
277 [specify the age of a tile before checking it (default is 30 s)])],
278 [if test "x$withval" = "xno"; then
279 VIK_CONFIG_DEFAULT_TILE_AGE=0;
280 elif test "x$withval" = "xyes"; then
281 AC_MSG_ERROR([Please, set a value for age of tiles])
282 else
283 VIK_CONFIG_DEFAULT_TILE_AGE=${withval}
284 fi],
285 [VIK_CONFIG_DEFAULT_TILE_AGE=30])
286AC_DEFINE_UNQUOTED(VIK_CONFIG_DEFAULT_TILE_AGE, ${VIK_CONFIG_DEFAULT_TILE_AGE},
287 [Age of tiles before cheking it (in seconds)])
288
e5140ce8
GB
289dnl man pages processing
290DB2MAN_XSL=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
291AC_SUBST(DB2MAN_XSL)
292AC_PATH_PROG(XP,xsltproc)
293AM_CONDITIONAL([GEN_MANPAGES],[test "x$XP" != "x" && test -r "$DB2MAN_XSL"])
294
a5daec1c
GB
295dnl This will cause the automake generated makefiles to pass the
296dnl correct flags to aclocal.
297ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
298AC_SUBST(ACLOCAL_AMFLAGS)
299
734652bf 300# Configuration
9903c388 301AC_CONFIG_FILES([Makefile
0912fc7e 302 src/Makefile
dad55b79 303 src/icons/Makefile
a5daec1c 304 po/Makefile.in
9d3e06a4 305 test/Makefile
f8b8a0b5 306 help/Makefile
0912fc7e 307 doc/Makefile
5c6dc9bf 308 doc/examples/Makefile
0912fc7e 309 doc/dev/Makefile])
af2740eb
QT
310AC_OUTPUT([
311 viking.spec
312 ])
001a86db
QT
313
314dnl Output the configuration summary
315echo ""
316echo "==========================================="
317echo "$PACKAGE $VERSION"
318echo "-------------------------------------------"
319echo "Alphabetized track & waypoints : $ac_cv_enable_alpha_trw"
320echo "Google Maps : $ac_cv_enable_google"
001a86db
QT
321echo "Terraserver Maps : $ac_cv_enable_terraserver"
322#echo "Expedia Maps : $ac_cv_enable_expedia"
323echo "Open Street Map : $ac_cv_enable_openstreetmap"
f7d8a3c2 324echo "BlueMarble : $ac_cv_enable_bluemarble"
da03b29d 325echo "Geonames : $ac_cv_enable_geonames"
001a86db
QT
326#echo "Geocaches Acquire : $ac_cv_enable_geocaches"
327echo "USGS 24k DEM : $ac_cv_enable_dem24k"
328echo "Realtime GPS Tracking : $ac_cv_enable_realtimegpstracking"
329echo "Size of map cache (in memory) : ${VIK_CONFIG_MAPCACHE_SIZE}"
5e108809 330echo "Age of tiles (in seconds) : ${VIK_CONFIG_DEFAULT_TILE_AGE}"
001a86db
QT
331echo "-------------------------------------------"
332echo ""
333echo "Configure finished, type 'make' to build."
334