~ubuntu-branches/ubuntu/trusty/syncevolution/trusty-proposed

« back to all changes in this revision

Viewing changes to src/backends/buteo/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Tino Keitel
  • Date: 2011-07-20 16:02:02 UTC
  • mfrom: (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110720160202-e8uf7ogw4vh0q0f3
Tags: 1.1.99.5a-1
* New upstream version 1.1.99.5a, first release candiate for 1.2
* Added python-openssl dependency, the HTTP server needs it for HTTPS support
* Added versioned dependency on libsynthesis0 to get required features
* Fixed .orig.tar.gz generation in get-orig-source target
* Added myself to Uploaders:, thanks to David for sponsoring
* Use updated upstream tag for source package generation
* Removed 0001-Replace-with-in-call-to-PKG_CHECK_MODULES.patch, fixed upstream
* Renamed NEWS.Debian to NEWS so that it is actually used
* Updated NEWS for 1.1.99.5a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/m4-repo/autotroll.mk
 
2
 
 
3
# "test" only works when compiling as part of SyncEvolution
 
4
AM_CPPFLAGS = $(SYNCEVOLUTION_CFLAGS) -I$(srcdir)/../../../test $(BACKEND_CPPFLAGS)
 
5
EXTRA_DIST = configure-sub.in
 
6
MAINTAINERCLEANFILES = Makefile.in
 
7
 
 
8
# directories required by Buteo for plugins and config files
 
9
syncdir = $(libdir)/sync
 
10
profilesdir = $(sysconfdir)/sync
 
11
 
 
12
if ENABLE_BUTEO
 
13
nobase_dist_profiles_DATA = \
 
14
    profiles/sync/google-calendar.xml \
 
15
    profiles/service/google-calendar.xml \
 
16
    profiles/sync/google-contacts.xml \
 
17
    profiles/service/google-contacts.xml \
 
18
    profiles/sync/yahoo.xml \
 
19
    profiles/service/yahoo.xml \
 
20
    profiles/client/syncevo-buteo.xml
 
21
sync_LTLIBRARIES = libsyncevo-buteo-client.la
 
22
 
 
23
BUILT_SOURCES = ButeoBridge.moc.cpp
 
24
 
 
25
libsyncevo_buteo_client_la_SOURCES = \
 
26
        ButeoBridge.h \
 
27
        ButeoBridge.cpp
 
28
nodist_libsyncevo_buteo_client_la_SOURCES = \
 
29
        $(BUILT_SOURCES)
 
30
 
 
31
libsyncevo_buteo_client_la_LIBADD = $(BUTEO_LIBS) $(QT_LIBS) $(SYNCEVOLUTION_LIBS)
 
32
libsyncevo_buteo_client_la_LDFLAGS = -module -avoid-version $(QT_LDFLAGS)
 
33
libsyncevo_buteo_client_la_CPPFLAGS = $(AM_CPPFLAGS) $(QT_CPPFLAGS)
 
34
 
 
35
# Allow Qt to set some compile flags, but not the ones normally set via configure.
 
36
# In particular -W is not compatible with the SyncEvolution header files (we have
 
37
# unused parameters in some inline functions).
 
38
libsyncevo_buteo_client_la_CXXFLAGS = $(SYNCEVOLUTION_CXXFLAGS) $(BUTEO_CFLAGS) $(filter-out -O2 -g -W -Wall, $(QT_CXXFLAGS))
 
39
endif