~saltmakrell/launchpad/fixtiles-osm-gps-map

« back to all changes in this revision

Viewing changes to python/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-01-23 18:01:56 UTC
  • mfrom: (0.1.3 squeeze) (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100123180156-g9bge7mrrx4j10lz
Tags: 0.5-1
* New upstream release
  - fixed missing #include in src/osm-gps-map.c (Closes: #564907)
* debian/patches/:
  - 02-fix_python_library_linking.patch removed, fixed upstream
* debian/python-osmgpsmap.examples updated
* debian/rules: don't remove COPYING on clean
* debian/libosmgpsmap0.symbols updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.53)
2
 
AC_INIT(osmgpsmap-python, 0.1)
 
2
AC_INIT(python-osmgpsmap, 0.5.0)
3
3
AC_CONFIG_SRCDIR(osmgpsmap.defs)
4
4
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
5
5
 
12
12
 
13
13
AM_PROG_LIBTOOL
14
14
 
 
15
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 
16
 
15
17
AC_ARG_ENABLE(more-warnings,
16
18
              [  --disable-more-warnings  Inhibit compiler warnings],
17
19
              set_more_warnings=no)
48
50
        #file cannot tell us to also include/link gtk/soup, so we must manually do it
49
51
        PKG_CHECK_MODULES(OSMGPSMAP, [gtk+-2.0 libsoup-2.4])
50
52
 
51
 
        #and we must link to the static lib
52
 
        OSMGPSMAP_CFLAGS="$OSMGPSMAP_CFLAGS -I../src"
53
 
        OSMGPSMAP_LIBS="$OSMGPSMAP_LIBS ../src/libosmgpsmap.la"
 
53
        #and we must link to the local lib
 
54
        OSMGPSMAP_CFLAGS="$OSMGPSMAP_CFLAGS -I../src/"
 
55
        OSMGPSMAP_LIBS="$OSMGPSMAP_LIBS -L../src/.libs/ -losmgpsmap"
54
56
else
55
57
        PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap)
56
58
fi