diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-11-06 01:06:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-11-06 01:06:14 +0800 |
commit | 97115e6e0d136b1f47f55d171760927f23ab3b5d (patch) | |
tree | fe5aed30d98289a7755e055a0c2184b50e5c5131 /configure.ac | |
parent | 319f7e9420dd729419891641cdff3cc3363488c2 (diff) | |
download | gsoc2013-evolution-97115e6e0d136b1f47f55d171760927f23ab3b5d.tar.gz gsoc2013-evolution-97115e6e0d136b1f47f55d171760927f23ab3b5d.tar.zst gsoc2013-evolution-97115e6e0d136b1f47f55d171760927f23ab3b5d.zip |
Restrict geocode-glib dependency to 0.99.0.
Use geocode-glib = 0.99.0 or else pass --disable-contact-maps to
configure. The next release of geocode-glib will contain API changes,
and we don't want to adapt to those API changes until they're released.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 09d7803bfe..f4ba77ac03 100644 --- a/configure.ac +++ b/configure.ac @@ -1375,9 +1375,11 @@ if test "x$enable_contact_maps" = "xyes"; then ]) fi + dnl Restrict geocode-glib dependency to 0.99.0 so + dnl we don't have to chase subsequent API changes. PKG_CHECK_MODULES([GEO], [geoclue >= geoclue_minimum_version - geocode-glib], + geocode-glib = 0.99.0], [have_geo=yes], [have_geo=no]) if test "x$have_geo" = "xno"; then |