mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-28 13:18:13 +02:00
* dbus/dbus-connection.c: disable verbose lock spew * tools/dbus-send.c: add --print-reply command line option * tools/dbus-print-message.h (print_message): new util function shared by dbus-send and dbus-monitor * tools/dbus-monitor.c (handler_func): exit on disconnect * dbus/dbus-transport-unix.c (do_reading): if the transport is disconnected, don't try to use the read_watch * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL so we can find this bug more easily
30 lines
670 B
Makefile
30 lines
670 B
Makefile
INCLUDES=-I$(top_srcdir) $(DBUS_CLIENT_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
|
|
|
if HAVE_GLIB
|
|
GLIB_TOOLS=dbus-monitor
|
|
else
|
|
GLIB_TOOLS=
|
|
endif
|
|
|
|
bin_PROGRAMS=dbus-send $(GLIB_TOOLS) dbus-launch
|
|
|
|
dbus_send_SOURCES= \
|
|
dbus-print-message.c \
|
|
dbus-print-message.h \
|
|
dbus-send.c
|
|
|
|
dbus_monitor_SOURCES= \
|
|
dbus-monitor.c \
|
|
dbus-print-message.c \
|
|
dbus-print-message.h
|
|
|
|
dbus_launch_SOURCES= \
|
|
dbus-launch.c
|
|
|
|
dbus_send_LDADD= $(top_builddir)/dbus/libdbus-1.la
|
|
dbus_monitor_LDADD= $(top_builddir)/glib/libdbus-glib-1.la
|
|
## dbus-launch doesn't link to anything
|
|
dbus_launch_LDADD= $(DBUS_X_LIBS)
|
|
|
|
man_MANS = dbus-send.1 dbus-monitor.1 dbus-launch.1
|
|
EXTRA_DIST = $(man_MANS)
|