~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Joshua Judson Rosen
  • Author(s): Marcus Bauer
  • Date: 2010-08-08 22:28:45 UTC
  • Revision ID: rozzin@geekspace.com-20100808222845-86w25l3qq5nlf5ib
Perl scripts to convert track-logs from tangoGPS format to GPX and OSM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
 
3
 
AC_INIT([FoxtrotGPS], [1.2.2+], [foss-gps@lists.osgeo.org])
 
3
AC_INIT([FoxtrotGPS], [0.99.4], [foss-gps@lists.osgeo.org])
4
4
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability])
5
5
AC_CONFIG_SRCDIR([src/main.c])
6
6
AC_CONFIG_HEADERS([config.h])
7
 
AM_MAINTAINER_MODE([enable])
 
7
AM_MAINTAINER_MODE
8
8
 
 
9
AC_ISC_POSIX
9
10
AC_PROG_CC_C99
10
11
AC_HEADER_STDC
11
12
 
12
13
GETTEXT_PACKAGE=foxtrotgps
13
14
AC_SUBST(GETTEXT_PACKAGE)
14
15
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext])
15
 
IT_PROG_INTLTOOL([0.23])
 
16
AC_PROG_INTLTOOL([0.23])
16
17
 
17
18
dnl Languages which your application supports
18
 
ALL_LINGUAS="bg cs de es fi fr hu ru sk nl ja sr pt_BR pl it"
 
19
ALL_LINGUAS="bg cs de es fi fr hu ru sk nl"
19
20
AM_GLIB_GNU_GETTEXT
20
21
 
21
 
AC_PROG_LN_S
22
 
LT_INIT
 
22
AM_PROG_LIBTOOL
23
23
 
24
24
PKG_CHECK_MODULES(GTK, [gtk+-2.0 gdk-2.0 gthread-2.0])
25
25
PKG_CHECK_MODULES(GLADE, [libglade-2.0])
 
26
PKG_CHECK_MODULES(GCONF, [gconf-2.0])
26
27
PKG_CHECK_MODULES(LIBCURL, [libcurl])
27
28
PKG_CHECK_MODULES(SQLITE, [sqlite3])
28
29
PKG_CHECK_MODULES(LIBEXIF, [libexif])
29
30
PKG_CHECK_MODULES(LIBXML, [libxml-2.0])
30
31
PKG_CHECK_MODULES(LIBGPS, [libgps >= 2.90])
31
 
PKG_CHECK_MODULES(BLUETOOTH, [bluez],
32
 
                  [AC_DEFINE(HAVE_BLUEZ, [],
33
 
                             [We have the BlueZ bluetooth library])
34
 
                   AC_DEFINE(ENABLE_HRM, [],
35
 
                             [Heartrate-monitor support is enabled])],
36
 
                  [AC_MSG_WARN([Building without heartrate-monitor support])])
37
 
 
38
 
GLIB_GSETTINGS
39
 
 
40
 
AC_CONFIG_FILES([
 
32
 
 
33
AC_OUTPUT([
41
34
Makefile
42
35
po/Makefile.in
43
36
src/Makefile
44
37
pixmaps/Makefile
45
38
data/Makefile
 
39
data/foxtrotgps.glade
46
40
doc/Makefile
47
 
contrib/Makefile
48
41
])
49
 
AC_OUTPUT