diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2009-09-28 22:16:14 +0800 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2010-04-19 23:50:17 +0800 |
commit | 7e7a145b8f482ebaca88a0427069166f1f117566 (patch) | |
tree | 1b2116456fe3f9c0296fc574afeeaf3f9eb98760 /configure.ac | |
parent | 24a269487823900e491cafd76af2c973f34898fb (diff) | |
download | gsoc2013-evolution-7e7a145b8f482ebaca88a0427069166f1f117566.tar.gz gsoc2013-evolution-7e7a145b8f482ebaca88a0427069166f1f117566.tar.zst gsoc2013-evolution-7e7a145b8f482ebaca88a0427069166f1f117566.zip |
Bug 583742 — Port to external libgdata
Port Google account setup plugin to external libgdata. This drops the
dependency on libgdata-1.2 from e-d-s, and add a dependency on the external
libgdata >= 0.4.0. Closes: bgo#583742
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index da093d76d6..907fae6d58 100644 --- a/configure.ac +++ b/configure.ac @@ -236,9 +236,8 @@ PKG_CHECK_MODULES([EVOLUTION_DATA_SERVER], libedataserver-1.2 >= eds_minimum_version libedataserverui-1.2 >= eds_minimum_version libegroupwise-1.2 >= eds_minimum_version - libebackend-1.2 >= eds_minimum_version - libgdata-1.2 >= eds_minimum_version - libgdata-google-1.2 >= eds_minimum_version]) + libebackend-1.2 >= eds_minimum_version]) + dnl ****************************** dnl Canberra / Canberra-GTK Sound @@ -1307,7 +1306,11 @@ EVO_SET_COMPILE_FLAGS(LIBSOUP, libsoup-2.4 >= libsoup_minimum_version) AC_SUBST(LIBSOUP_CFLAGS) AC_SUBST(LIBSOUP_LIBS) -EVO_SET_COMPILE_FLAGS(EVOLUTION_CALENDAR, libgtkhtml-3.14 libebook-1.2 libecal-1.2 libedataserverui-1.2 libebackend-1.2 $libnotify gtkhtml-editor libgdata-1.2 libgdata-google-1.2) +EVO_SET_COMPILE_FLAGS(GDATA, libgdata >= 0.4.0) +AC_SUBST(GDATA_CFLAGS) +AC_SUBST(GDATA_LIBS) + +EVO_SET_COMPILE_FLAGS(EVOLUTION_CALENDAR, libgtkhtml-3.14 libebook-1.2 libecal-1.2 libedataserverui-1.2 libebackend-1.2 $libnotify gtkhtml-editor) AC_SUBST(EVOLUTION_CALENDAR_CFLAGS) AC_SUBST(EVOLUTION_CALENDAR_LIBS) |