2 configdir=$(sysconfdir)/dbus-1
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"\" \
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
19 # if assertions are enabled, improve backtraces
20 AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
22 dbusincludedir=$(includedir)/dbus-1.0/dbus
23 dbusarchincludedir=$(libdir)/dbus-1.0/include/dbus
25 lib_LTLIBRARIES=libdbus-1.la
28 # Deal with W32 .def and version-info.rc stuff
37 dbus_res = versioninfo.o
38 dbus_res_ldflag = -Wl,$(dbus_res)
39 no_undefined = -no-undefined
42 EXTRA_libdbus_1_la_DEPENDENCIES = $(dbus_res)
49 ## don't export symbols that start with "_" (we use this
50 ## convention for internal symbols)
51 export_symbols = -export-symbols-regex "^[^_].*"
53 intllibs = @LTLIBINTL@
59 # Platform-dependent sources:
62 DBUS_LIB_arch_sources = \
67 wince_source = dbus-sysdeps-wince-glue.h dbus-sysdeps-wince-glue.c
72 DBUS_SHARED_arch_sources = \
79 dbus-sysdeps-thread-win.c \
80 dbus-transport-win.c \
83 DBUS_UTIL_arch_sources = \
84 dbus-sysdeps-util-win.c \
88 if DBUS_ENABLE_LAUNCHD
89 launchd_source = dbus-server-launchd.h dbus-server-launchd.c
94 DBUS_LIB_arch_sources = \
100 DBUS_SHARED_arch_sources = \
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 \
114 if ENABLE_KDBUS_TRANSPORT
115 DBUS_SHARED_arch_sources += \
116 dbus-transport-kdbus.c \
117 dbus-transport-kdbus.h \
122 DBUS_UTIL_arch_sources = \
123 dbus-sysdeps-util-unix.c \
129 DBUS_UTIL_arch_sources += dbus-socket-set-epoll.c
132 dbusinclude_HEADERS= \
142 dbus-pending-call.h \
152 nodist_dbusarchinclude_HEADERS= \
155 ### source code that goes in the installed client library
156 ### and is specific to library functionality
163 dbus-connection-internal.h \
169 dbus-marshal-header.c \
170 dbus-marshal-header.h \
171 dbus-marshal-byteswap.c \
172 dbus-marshal-byteswap.h \
173 dbus-marshal-recursive.c \
174 dbus-marshal-recursive.h \
175 dbus-marshal-validate.c \
176 dbus-marshal-validate.h \
178 dbus-message-internal.h \
179 dbus-message-private.h \
185 dbus-pending-call.c \
186 dbus-pending-call-internal.h \
190 dbus-server-debug-pipe.c \
191 dbus-server-debug-pipe.h \
192 dbus-server-protected.h \
193 dbus-server-socket.c \
194 dbus-server-socket.h \
195 $(DBUS_LIB_arch_sources) \
202 dbus-threads-internal.h \
206 dbus-transport-protected.h \
207 dbus-transport-socket.c \
208 dbus-transport-socket.h \
212 ### source code that goes in the installed client library
213 ### AND is generic utility functionality used by the
214 ### daemon or test programs (all symbols in here should
215 ### be underscore-prefixed)
216 DBUS_SHARED_SOURCES= \
227 dbus-marshal-basic.c \
228 dbus-marshal-basic.h \
236 dbus-string-private.h \
237 $(DBUS_SHARED_arch_sources) \
240 dbus-valgrind-internal.h
242 ### source code that is generic utility functionality used
243 ### by the bus daemon or test apps, but is NOT included
244 ### in the D-Bus client library (all symbols in here
245 ### should be underscore-prefixed but don't really need
246 ### to be unless they move to DBUS_SHARED_SOURCES later)
253 dbus-credentials-util.c \
256 dbus-marshal-byteswap-util.c \
257 dbus-marshal-recursive-util.c \
258 dbus-marshal-validate-util.c \
259 dbus-message-factory.c \
260 dbus-message-factory.h \
261 dbus-message-util.c \
264 $(DBUS_UTIL_arch_sources) \
267 dbus-socket-set-poll.c \
270 dbus-sysdeps-util.c \
274 libdbus_1_la_SOURCES= \
275 $(DBUS_LIB_SOURCES) \
276 $(DBUS_SHARED_SOURCES)
278 libdbus_internal_la_SOURCES= \
279 $(DBUS_LIB_SOURCES) \
280 $(DBUS_SHARED_SOURCES) \
283 BUILT_SOURCES=$(nodist_dbusarchinclude_HEADERS)
284 EXTRA_DIST=dbus-arch-deps.h.in
286 ## this library is the same as libdbus, but exports all the symbols
287 ## and is only used for static linking within the dbus package.
288 noinst_LTLIBRARIES=libdbus-internal.la
290 libdbus_1_la_CPPFLAGS = \
294 libdbus_1_la_LIBADD= $(LIBDBUS_LIBS)
295 libdbus_1_la_LDFLAGS = \
298 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
302 libdbus_internal_la_CPPFLAGS = \
304 -DDBUS_STATIC_BUILD \
306 libdbus_internal_la_LIBADD=$(LIBDBUS_LIBS) $(SYSTEMD_LIBS)
309 # This must be a separate convenience library, otherwise libtool notices
310 # that libdbus-1 might contain C++, links it with g++ and links in libstdc++,
311 # even on Unix where in fact it doesn't contain any C++. For Windows, where
312 # this code is used, we don't actually need libstdc++.
313 noinst_LTLIBRARIES += libdbus-init-win.la
314 libdbus_init_win_la_SOURCES = dbus-init-win.cpp
315 libdbus_1_la_LIBADD += libdbus-init-win.la
316 libdbus_internal_la_LIBADD += libdbus-init-win.la
321 if DBUS_ENABLE_EMBEDDED_TESTS
322 # We can't actually run this til we've reached test/
323 noinst_PROGRAMS += dbus-test
329 dbus_test_LDADD = libdbus-internal.la
331 ## mop up the gcov files
333 /bin/rm *.bb *.bbg *.da *.gcov .libs/*.da .libs/*.bbg || true
336 curl http://cgit.freedesktop.org/systemd/systemd/plain/src/libsystemd-daemon/sd-daemon.c > $(srcdir)/sd-daemon.c
337 curl http://cgit.freedesktop.org/systemd/systemd/plain/src/systemd/sd-daemon.h > $(srcdir)/sd-daemon.h