2 # Process this file with autoconf to produce a configure script.
7 dnl AC_CONFIG_SRCDIR([src/main.c])
8 AC_CONFIG_HEADERS([src/config.h])
10 # Checks for programs.
16 GETTEXT_PACKAGE=viking
17 AC_SUBST(GETTEXT_PACKAGE)
18 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
20 AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
23 IT_PROG_INTLTOOL([0.35.0])
25 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
27 dnl This will cause the automake generated makefiles to pass the
28 dnl correct flags to aclocal.
29 ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
30 AC_SUBST(ACLOCAL_AMFLAGS)
32 # Checks for header files.
34 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])
36 # Checks for typedefs, structures, and compiler characteristics.
40 # Checks for library functions.
43 AC_CHECK_FUNCS([floor gethostbyname memset mkdtemp pow realpath socket sqrt strcasecmp strchr strdup strncasecmp strtol strtoul])
49 LIBCURL_CHECK_CONFIG([yes],[],[],[AC_MSG_ERROR([libcurl is needed but not found])])
51 AC_CHECK_PROG([GDK_PIXBUF_CSOURCE],gdk-pixbuf-csource,[yes])
52 if test $GDK_PIXBUF_CSOURCE != "yes"
54 AC_MSG_ERROR([gdk-pixbuf-csource is needed but not found])
57 # Checks for libraries.
58 AM_PATH_GTK_2_0(2.2.0,,AC_MSG_ERROR(needs GTK+ 2.2.0),gthread)
61 AC_ARG_ENABLE(alphabetized-trw, AC_HELP_STRING([--enable-alphabetized-trw],
62 [enable alphabetized track & waypoints (default is enable)]),
63 [ac_cv_enable_alpha_trw=$enableval],
64 [ac_cv_enable_alpha_trw=yes])
65 AC_CACHE_CHECK([whether to enable alphabetized track & waypoint],
66 [ac_cv_enable_alpha_trw], [ac_cv_enable_alpha_trw=yes])
67 case $ac_cv_enable_alpha_trw in
69 AC_DEFINE(VIK_CONFIG_ALPHABETIZED_TRW, [], [NO ALPHABETIZED TRW])
73 AC_ARG_ENABLE(google, AC_HELP_STRING([--enable-google],
74 [enable Google stuff (default is enable)]),
75 [ac_cv_enable_google=$enableval],
76 [ac_cv_enable_google=yes])
77 AC_CACHE_CHECK([whether to enable Google stuff],
78 [ac_cv_enable_google], [ac_cv_enable_google=yes])
79 case $ac_cv_enable_google in
81 AC_DEFINE(VIK_CONFIG_GOOGLE, [], [GOOGLE STUFF])
84 AM_CONDITIONAL([GOOGLE], [test x$ac_cv_enable_google = xyes])
86 AC_ARG_ENABLE(terraserver, AC_HELP_STRING([--enable-terraserver],
87 [enable Terraserver stuff (default is enable)]),
88 [ac_cv_enable_terraserver=$enableval],
89 [ac_cv_enable_terraserver=yes])
90 AC_CACHE_CHECK([whether to enable Terraserver stuff],
91 [ac_cv_enable_terraserver], [ac_cv_enable_terraserver=yes])
92 case $ac_cv_enable_terraserver in
94 AC_DEFINE(VIK_CONFIG_TERRASERVER, [], [TERRASERVER STUFF])
97 AM_CONDITIONAL([TERRASERVER], [test x$ac_cv_enable_terraserver = xyes])
99 AC_ARG_ENABLE(expedia, AC_HELP_STRING([--enable-expedia],
100 [enable Expedia stuff (default is disable)]),
101 [ac_cv_enable_expedia=$enableval],
102 [ac_cv_enable_expedia=no])
103 AC_CACHE_CHECK([whether to enable Expedia stuff],
104 [ac_cv_enable_expedia], [ac_cv_enable_expedia=yes])
105 case $ac_cv_enable_expedia in
107 AC_DEFINE(VIK_CONFIG_EXPEDIA, [], [EXPEDIA STUFF])
110 AM_CONDITIONAL([EXPEDIA], [test x$ac_cv_enable_expedia = xyes])
112 # OpenStreetMap http://www.openstreetmap.org/
113 AC_ARG_ENABLE(openstreetmap, AC_HELP_STRING([--enable-openstreetmap],
114 [enable OpenStreetMap stuff (default is enable)]),
115 [ac_cv_enable_openstreetmap=$enableval],
116 [ac_cv_enable_openstreetmap=yes])
117 AC_CACHE_CHECK([whether to enable OpenStreetMap stuff],
118 [ac_cv_enable_openstreetmap], [ac_cv_enable_openstreetmap=yes])
119 case $ac_cv_enable_openstreetmap in
121 AC_DEFINE(VIK_CONFIG_OPENSTREETMAP, [], [OPENSTREETMAP STUFF])
124 AM_CONDITIONAL([OPENSTREETMAP], [test x$ac_cv_enable_openstreetmap = xyes])
127 AC_ARG_ENABLE(bluemarble, AC_HELP_STRING([--enable-bluemarble],
128 [enable BlueMarble stuff (default is enable)]),
129 [ac_cv_enable_bluemarble=$enableval],
130 [ac_cv_enable_bluemarble=yes])
131 AC_CACHE_CHECK([whether to enable BlueMarble stuff],
132 [ac_cv_enable_bluemarble], [ac_cv_enable_bluemarble=yes])
133 case $ac_cv_enable_bluemarble in
135 AC_DEFINE(VIK_CONFIG_BLUEMARBLE, [], [BLUEMARBLE STUFF])
138 AM_CONDITIONAL([BLUEMARBLE], [test x$ac_cv_enable_bluemarble = xyes])
141 AC_ARG_ENABLE(openaerial, AC_HELP_STRING([--enable-openaerial],
142 [enable OpenAerial stuff (default is enable)]),
143 [ac_cv_enable_openaerial=$enableval],
144 [ac_cv_enable_openaerial=yes])
145 AC_CACHE_CHECK([whether to enable OpenAerial stuff],
146 [ac_cv_enable_openaerial], [ac_cv_enable_openaerial=yes])
147 case $ac_cv_enable_openaerial in
149 AC_DEFINE(VIK_CONFIG_OPENAERIAL, [], [OPENAERIAL STUFF])
152 AM_CONDITIONAL([OPENAERIAL], [test x$ac_cv_enable_openaerial = xyes])
154 AC_ARG_ENABLE(geocaches, AC_HELP_STRING([--enable-geocaches],
155 [enable Geocaches Acquire (default is disable).]),
156 [ac_cv_enable_geocaches=$enableval],
157 [ac_cv_enable_geocaches=no])
158 AC_CACHE_CHECK([whether to enable Geocaches Acquire],
159 [ac_cv_enable_geocaches], [ac_cv_enable_geocaches=yes])
160 case $ac_cv_enable_geocaches in
162 AC_DEFINE(VIK_CONFIG_GEOCACHES, [], [GEOCACHES STUFF])
165 AM_CONDITIONAL([GEOCACHES], [test x$ac_cv_enable_geocaches = xyes])
168 AC_ARG_ENABLE(dem24k, AC_HELP_STRING([--enable-dem24k],
169 [enable USGS 24k DEM (default is disable) download source. Requires dem24k.pl script in path.]),
170 [ac_cv_enable_dem24k=$enableval],
171 [ac_cv_enable_dem24k=no])
172 AC_CACHE_CHECK([whether to enable USGS DEM 24k download source],
173 [ac_cv_enable_dem24k], [ac_cv_enable_dem24k=yes])
174 case $ac_cv_enable_dem24k in
176 AC_DEFINE(VIK_CONFIG_DEM24K, [], [DEM24K STUFF])
179 AM_CONDITIONAL([DEM24K], [test x$ac_cv_enable_dem24k = xyes])
181 # Realtime GPS tracking
182 AC_ARG_ENABLE(realtime-gps-tracking, AC_HELP_STRING([--enable-realtime-gps-tracking],
183 [enable realtime GPS tracking (default is enable)]),
184 [ac_cv_enable_realtimegpstracking=$enableval],
185 [ac_cv_enable_realtimegpstracking=yes])
186 AC_CACHE_CHECK([whether to enable Realtime GPS Tracking stuff],
187 [ac_cv_enable_realtimegpstracking], [ac_cv_enable_realtimegpstracking=yes])
188 case $ac_cv_enable_realtimegpstracking in
190 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]))
191 AC_DEFINE(VIK_CONFIG_REALTIME_GPS_TRACKING, [], [REALTIME GPS TRACKING STUFF])
194 AM_CONDITIONAL([REALTIME_GPS_TRACKING], [test x$ac_cv_enable_realtimegpstracking = xyes])
196 AC_ARG_WITH(mapcache,
197 [AC_HELP_STRING([--with-mapcache],
198 [specify the size of the map cache (default is 50331648)])],
199 [if test "x$withval" = "xno"; then
200 VIK_CONFIG_MAPCACHE_SIZE=0;
201 elif test "x$withval" = "xyes"; then
202 AC_MSG_ERROR([Please, set a value for size of the map cache])
204 VIK_CONFIG_MAPCACHE_SIZE=${withval}
206 [VIK_CONFIG_MAPCACHE_SIZE=50331648])
207 AC_DEFINE_UNQUOTED(VIK_CONFIG_MAPCACHE_SIZE, ${VIK_CONFIG_MAPCACHE_SIZE},
208 [Size of the map cache])
210 dnl man pages processing
211 DB2MAN_XSL=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
213 AC_PATH_PROG(XP,xsltproc)
214 AM_CONDITIONAL([GEN_MANPAGES],[test "x$XP" != "x" && test -r "$DB2MAN_XSL"])
216 dnl This will cause the automake generated makefiles to pass the
217 dnl correct flags to aclocal.
218 ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
219 AC_SUBST(ACLOCAL_AMFLAGS)
222 AC_CONFIG_FILES([Makefile
233 dnl Output the configuration summary
235 echo "==========================================="
236 echo "$PACKAGE $VERSION"
237 echo "-------------------------------------------"
238 echo "Alphabetized track & waypoints : $ac_cv_enable_alpha_trw"
239 echo "Google Maps : $ac_cv_enable_google"
240 echo "Terraserver Maps : $ac_cv_enable_terraserver"
241 #echo "Expedia Maps : $ac_cv_enable_expedia"
242 echo "Open Street Map : $ac_cv_enable_openstreetmap"
243 #echo "Geocaches Acquire : $ac_cv_enable_geocaches"
244 echo "USGS 24k DEM : $ac_cv_enable_dem24k"
245 echo "Realtime GPS Tracking : $ac_cv_enable_realtimegpstracking"
246 echo "Size of map cache (in memory) : ${VIK_CONFIG_MAPCACHE_SIZE}"
247 echo "-------------------------------------------"
249 echo "Configure finished, type 'make' to build."