daemon fix and development
[platform/upstream/dbus.git] / dbus / Makefile.am
1
2 configdir=$(sysconfdir)/dbus-1
3
4 AM_CPPFLAGS = \
5         -I$(top_builddir) \
6         -I$(top_srcdir) \
7         $(SYSTEMD_CFLAGS) \
8         $(VALGRIND_CFLAGS) \
9         -DDBUS_COMPILATION \
10         -DDBUS_MACHINE_UUID_FILE=\""$(localstatedir)/lib/dbus/machine-id"\" \
11         -DDBUS_SYSTEM_CONFIG_FILE=\""$(configdir)/system.conf"\" \
12         -DDBUS_SESSION_CONFIG_FILE=\""$(configdir)/session.conf"\" \
13         $(NULL)
14
15 # On Linux with glibc 2.17, sd-daemon.c support for POSIX message queues
16 # results in an otherwise unnecessary dependency on librt. Disable it.
17 AM_CPPFLAGS += -DSD_DAEMON_DISABLE_MQ
18
19 # if assertions are enabled, improve backtraces
20 AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
21
22 dbusincludedir=$(includedir)/dbus-1.0/dbus
23 dbusarchincludedir=$(libdir)/dbus-1.0/include/dbus
24
25 lib_LTLIBRARIES=libdbus-1.la
26
27 #
28 # Deal with W32 .def and version-info.rc stuff
29 #
30 if DBUS_WIN
31
32 SUFFIXES = rc
33
34 .rc.o:
35         $(WINDRES) $< -o $@
36
37 dbus_res = versioninfo.o
38 dbus_res_ldflag = -Wl,$(dbus_res)
39 no_undefined = -no-undefined
40 export_symbols =
41
42 EXTRA_libdbus_1_la_DEPENDENCIES = $(dbus_res)
43 intllibs =
44
45 else
46 dbus_res =
47 dbus_res_ldflag =
48 no_undefined =
49 ## don't export symbols that start with "_" (we use this
50 ## convention for internal symbols)
51 export_symbols = -export-symbols-regex "^[^_].*"
52
53 intllibs = @LTLIBINTL@
54
55 endif
56
57
58 #
59 # Platform-dependent sources:
60 #
61 if DBUS_WIN
62 DBUS_LIB_arch_sources =                         \
63         dbus-server-win.c                       \
64         dbus-server-win.h
65
66 if DBUS_WINCE
67 wince_source = dbus-sysdeps-wince-glue.h dbus-sysdeps-wince-glue.c
68 else
69 wince_source =
70 endif
71
72 DBUS_SHARED_arch_sources =                      \
73         $(wince_source)                         \
74         dbus-file-win.c                         \
75         dbus-pipe-win.c                         \
76         dbus-sockets-win.h                      \
77         dbus-sysdeps-win.c                      \
78         dbus-sysdeps-win.h                      \
79         dbus-sysdeps-thread-win.c               \
80         dbus-transport-win.c                    \
81         dbus-transport-win.h
82
83 DBUS_UTIL_arch_sources =                        \
84         dbus-sysdeps-util-win.c                 \
85         dbus-spawn-win.c
86 else
87
88 if DBUS_ENABLE_LAUNCHD
89 launchd_source = dbus-server-launchd.h dbus-server-launchd.c
90 else
91 launchd_source =
92 endif
93
94 DBUS_LIB_arch_sources =                         \
95         dbus-uuidgen.c                          \
96         dbus-uuidgen.h                          \
97         dbus-server-unix.c                      \
98         dbus-server-unix.h
99
100 DBUS_SHARED_arch_sources =                      \
101         $(launchd_source)                       \
102         dbus-file-unix.c                        \
103         dbus-pipe-unix.c                        \
104         dbus-sysdeps-unix.c                     \
105         dbus-sysdeps-unix.h                     \
106         dbus-sysdeps-pthread.c                  \
107         dbus-transport-unix.c                   \
108         dbus-transport-unix.h                   \
109         dbus-transport-kdbus.c                  \
110         dbus-transport-kdbus.h                  \
111         kdbus-common.c                  \
112         kdbus-common.h                  \
113         dbus-userdb.c                           \
114         dbus-userdb.h                           \
115         sd-daemon.c                             \
116         sd-daemon.h
117
118 DBUS_UTIL_arch_sources =                        \
119         dbus-sysdeps-util-unix.c                \
120         dbus-userdb-util.c                      \
121         dbus-spawn.c
122 endif
123
124 if HAVE_LINUX_EPOLL
125 DBUS_UTIL_arch_sources += dbus-socket-set-epoll.c
126 endif
127
128 dbusinclude_HEADERS=                            \
129         dbus.h                                  \
130         dbus-address.h                          \
131         dbus-bus.h                              \
132         dbus-connection.h                       \
133         dbus-errors.h                           \
134         dbus-macros.h                           \
135         dbus-memory.h                           \
136         dbus-message.h                          \
137         dbus-misc.h                             \
138         dbus-pending-call.h                     \
139         dbus-protocol.h                         \
140         dbus-server.h                           \
141         dbus-shared.h                           \
142         dbus-signature.h                        \
143         dbus-syntax.h                           \
144         dbus-threads.h                          \
145         dbus-types.h
146
147
148 nodist_dbusarchinclude_HEADERS=                 \
149         dbus-arch-deps.h
150
151 ### source code that goes in the installed client library
152 ### and is specific to library functionality
153 DBUS_LIB_SOURCES=                               \
154         dbus-address.c                          \
155         dbus-auth.c                             \
156         dbus-auth.h                             \
157         dbus-bus.c                              \
158         dbus-connection.c                       \
159         dbus-connection-internal.h              \
160         dbus-credentials.c                      \
161         dbus-credentials.h                      \
162         dbus-errors.c                           \
163         dbus-keyring.c                          \
164         dbus-keyring.h                          \
165         dbus-marshal-header.c                   \
166         dbus-marshal-header.h                   \
167         dbus-marshal-byteswap.c                 \
168         dbus-marshal-byteswap.h                 \
169         dbus-marshal-recursive.c                \
170         dbus-marshal-recursive.h                \
171         dbus-marshal-validate.c                 \
172         dbus-marshal-validate.h                 \
173         dbus-message.c                          \
174         dbus-message-internal.h                 \
175         dbus-message-private.h                  \
176         dbus-misc.c                             \
177         dbus-nonce.h                            \
178         dbus-nonce.c                            \
179         dbus-object-tree.c                      \
180         dbus-object-tree.h                      \
181         dbus-pending-call.c                     \
182         dbus-pending-call-internal.h            \
183         dbus-resources.c                        \
184         dbus-resources.h                        \
185         dbus-server.c                           \
186         dbus-server-debug-pipe.c                \
187         dbus-server-debug-pipe.h                \
188         dbus-server-protected.h                 \
189         dbus-server-socket.c                    \
190         dbus-server-socket.h                    \
191         $(DBUS_LIB_arch_sources)                \
192         dbus-sha.c                              \
193         dbus-sha.h                              \
194         dbus-signature.c                        \
195         dbus-syntax.c                           \
196         dbus-timeout.c                          \
197         dbus-timeout.h                          \
198         dbus-threads-internal.h                 \
199         dbus-threads.c                          \
200         dbus-transport.c                        \
201         dbus-transport.h                        \
202         dbus-transport-protected.h              \
203         dbus-transport-socket.c                 \
204         dbus-transport-socket.h                 \
205         dbus-watch.c                            \
206         dbus-watch.h
207
208 ### source code that goes in the installed client library
209 ### AND is generic utility functionality used by the
210 ### daemon or test programs (all symbols in here should
211 ### be underscore-prefixed)
212 DBUS_SHARED_SOURCES=                            \
213         dbus-dataslot.c                         \
214         dbus-dataslot.h                         \
215         dbus-file.c                 \
216         dbus-file.h                 \
217         dbus-hash.c                             \
218         dbus-hash.h                             \
219         dbus-internals.c                        \
220         dbus-internals.h                        \
221         dbus-list.c                             \
222         dbus-list.h                             \
223         dbus-marshal-basic.c                    \
224         dbus-marshal-basic.h                    \
225         dbus-memory.c                           \
226         dbus-mempool.c                          \
227         dbus-mempool.h                          \
228         dbus-pipe.c                 \
229         dbus-pipe.h                 \
230         dbus-string.c                           \
231         dbus-string.h                           \
232         dbus-string-private.h                   \
233         $(DBUS_SHARED_arch_sources)             \
234         dbus-sysdeps.c                          \
235         dbus-sysdeps.h                          \
236         dbus-valgrind-internal.h
237
238 ### source code that is generic utility functionality used
239 ### by the bus daemon or test apps, but is NOT included
240 ### in the D-Bus client library (all symbols in here
241 ### should be underscore-prefixed but don't really need
242 ### to be unless they move to DBUS_SHARED_SOURCES later)
243 DBUS_UTIL_SOURCES=                              \
244         dbus-asv-util.c                         \
245         dbus-asv-util.h                         \
246         dbus-auth-script.c                      \
247         dbus-auth-script.h                      \
248         dbus-auth-util.c                        \
249         dbus-credentials-util.c                 \
250         dbus-mainloop.c                         \
251         dbus-mainloop.h                         \
252         dbus-marshal-byteswap-util.c            \
253         dbus-marshal-recursive-util.c           \
254         dbus-marshal-validate-util.c            \
255         dbus-message-factory.c                  \
256         dbus-message-factory.h                  \
257         dbus-message-util.c                     \
258         dbus-shell.c                            \
259         dbus-shell.h                            \
260         $(DBUS_UTIL_arch_sources)               \
261         dbus-socket-set.h                       \
262         dbus-socket-set.c                       \
263         dbus-socket-set-poll.c                  \
264         dbus-spawn.h                            \
265         dbus-string-util.c                      \
266         dbus-sysdeps-util.c                     \
267         dbus-test.c                             \
268         dbus-test.h
269
270 libdbus_1_la_SOURCES=                           \
271         $(DBUS_LIB_SOURCES)                     \
272         $(DBUS_SHARED_SOURCES)
273
274 libdbus_internal_la_SOURCES=                    \
275         $(DBUS_LIB_SOURCES)                     \
276         $(DBUS_SHARED_SOURCES)                  \
277         $(DBUS_UTIL_SOURCES)
278
279 BUILT_SOURCES=$(nodist_dbusarchinclude_HEADERS)
280 EXTRA_DIST=dbus-arch-deps.h.in
281
282 ## this library is the same as libdbus, but exports all the symbols
283 ## and is only used for static linking within the dbus package.
284 noinst_LTLIBRARIES=libdbus-internal.la
285
286 libdbus_1_la_CPPFLAGS = \
287         $(AM_CPPFLAGS) \
288         -Ddbus_1_EXPORTS \
289         $(NULL)
290 libdbus_1_la_LIBADD= $(LIBDBUS_LIBS)
291 libdbus_1_la_LDFLAGS = \
292         $(AM_LDFLAGS) \
293         $(export_symbols) \
294         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
295         -no-undefined \
296         $(NULL)
297
298 libdbus_internal_la_CPPFLAGS = \
299         $(AM_CPPFLAGS) \
300         -DDBUS_STATIC_BUILD \
301         $(NULL)
302 libdbus_internal_la_LIBADD=$(LIBDBUS_LIBS) $(SYSTEMD_LIBS)
303
304 if DBUS_WIN
305 # This must be a separate convenience library, otherwise libtool notices
306 # that libdbus-1 might contain C++, links it with g++ and links in libstdc++,
307 # even on Unix where in fact it doesn't contain any C++. For Windows, where
308 # this code is used, we don't actually need libstdc++.
309 noinst_LTLIBRARIES += libdbus-init-win.la
310 libdbus_init_win_la_SOURCES = dbus-init-win.cpp
311 libdbus_1_la_LIBADD += libdbus-init-win.la
312 libdbus_internal_la_LIBADD += libdbus-init-win.la
313 endif
314
315 noinst_PROGRAMS =
316
317 if DBUS_ENABLE_EMBEDDED_TESTS
318 # We can't actually run this til we've reached test/
319 noinst_PROGRAMS += dbus-test
320 endif
321
322 dbus_test_SOURCES=                              \
323         dbus-test-main.c
324
325 dbus_test_LDADD = libdbus-internal.la
326
327 ## mop up the gcov files
328 clean-local:
329         /bin/rm *.bb *.bbg *.da *.gcov .libs/*.da .libs/*.bbg || true
330
331 update-systemd:
332         curl http://cgit.freedesktop.org/systemd/systemd/plain/src/libsystemd-daemon/sd-daemon.c > $(srcdir)/sd-daemon.c
333         curl http://cgit.freedesktop.org/systemd/systemd/plain/src/systemd/sd-daemon.h > $(srcdir)/sd-daemon.h