~ubuntu-branches/ubuntu/wily/evolution-data-server/wily

« back to all changes in this revision

Viewing changes to libedataserver/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-07-20 13:34:59 UTC
  • mfrom: (1.1.126) (1.2.48 sid)
  • Revision ID: package-import@ubuntu.com-20150720133459-g6y46hnu5ewtoz08
Tags: 3.16.4-0ubuntu2
debian/patches/0001-Bug-752373-Monthly-events-do-not-recur-correctly.patch:
Cherry-pick patch from upstream to fix events not recurring correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
lib_LTLIBRARIES = libedataserver-1.2.la
19
19
noinst_LTLIBRARIES = libedataserver-private.la
20
20
 
21
 
libedataserver_1_2_la_CPPFLAGS = \
22
 
        $(AM_CPPFLAGS) \
 
21
SHARED_COMPILER_FLAGS = \
23
22
        -I$(top_srcdir) \
24
23
        -I$(top_srcdir)/private \
25
24
        -I$(top_builddir) \
30
29
        -DE_DATA_SERVER_LOCALEDIR=\""$(localedir)"\" \
31
30
        -DE_DATA_SERVER_EXTENSIONDIR=\"$(extensiondir)\" \
32
31
        -DE_DATA_SERVER_IMAGESDIR=\"$(imagesdir)\" \
 
32
        -DE_DATA_SERVER_CREDENTIALMODULEDIR=\"$(credentialmoduledir)\" \
33
33
        -DE_DATA_SERVER_PRIVDATADIR=\"$(privdatadir)\" \
34
34
        -DE_DATA_SERVER_UI_UIDIR=\""$(uidir)"\" \
35
35
        $(E_DATA_SERVER_CFLAGS) \
40
40
        $(ICU_CFLAGS) \
41
41
        $(NULL)
42
42
 
 
43
libedataserver_1_2_la_CPPFLAGS = \
 
44
        $(AM_CPPFLAGS) \
 
45
        $(SHARED_COMPILER_FLAGS)
 
46
 
43
47
libedataserver_1_2_la_SOURCES = \
44
48
        $(BUILT_SOURCES) \
45
49
        e-alphabet-index-private.h \
49
53
        e-client-private.h \
50
54
        e-collator.c \
51
55
        e-credentials.c \
 
56
        e-extensible.c \
 
57
        e-extension.c \
52
58
        e-flag.c \
 
59
        e-free-form-exp.c \
53
60
        e-gdbus-templates.c \
54
61
        e-iterator.c \
55
62
        e-list.c \
56
63
        e-list-iterator.c \
57
64
        e-memory.c \
 
65
        e-module.c \
58
66
        e-operation-pool.c \
59
67
        e-proxy.c \
60
68
        e-sexp.c \
63
71
        e-source-address-book.c \
64
72
        e-source-alarms.c \
65
73
        e-source-authentication.c \
66
 
        e-source-authenticator.c \
67
74
        e-source-autocomplete.c \
68
75
        e-source-backend.c \
69
76
        e-source-calendar.c \
70
77
        e-source-camel.c \
71
78
        e-source-collection.c \
 
79
        e-source-credentials-provider.c \
 
80
        e-source-credentials-provider-impl.c \
 
81
        e-source-credentials-provider-impl-password.c \
72
82
        e-source-goa.c \
73
83
        e-source-mail-account.c \
74
84
        e-source-mail-composition.c \
127
137
        e-client.h \
128
138
        e-collator.h \
129
139
        e-credentials.h \
 
140
        e-extensible.h \
 
141
        e-extension.h \
130
142
        e-flag.h \
 
143
        e-free-form-exp.h \
131
144
        e-gdbus-templates.h \
132
145
        e-iterator.h \
133
146
        e-list.h \
134
147
        e-list-iterator.h \
135
148
        e-memory.h \
 
149
        e-module.h \
136
150
        e-operation-pool.h \
137
151
        e-proxy.h \
138
152
        e-sexp.h \
140
154
        e-source-address-book.h \
141
155
        e-source-alarms.h \
142
156
        e-source-authentication.h \
143
 
        e-source-authenticator.h \
144
157
        e-source-autocomplete.h \
145
158
        e-source-backend.h \
146
159
        e-source-calendar.h \
147
160
        e-source-camel.h \
148
161
        e-source-collection.h \
 
162
        e-source-credentials-provider.h \
 
163
        e-source-credentials-provider-impl.h \
 
164
        e-source-credentials-provider-impl-password.h \
149
165
        e-source-enums.h \
150
166
        e-source-enumtypes.h \
151
167
        e-source-extension.h \
185
201
        e-alphabet-index-private.cpp \
186
202
        e-transliterator-private.cpp \
187
203
        $(NULL)
188
 
libedataserver_private_la_CPPFLAGS = $(libedataserver_1_2_la_CPPFLAGS)
 
204
libedataserver_private_la_CPPFLAGS = \
 
205
        $(AM_CXXFLAGS) \
 
206
        $(SHARED_COMPILER_FLAGS)
 
207
 
189
208
if OS_WIN32
190
209
libedataserver_1_2_la_LIBADD += libedataserver-private.la -lstdc++
191
210
else