mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-02 03:48:10 +02:00
* bus/bus.c (bus_context_check_security_policy): revamp this to work more sanely with new policy-based requested reply setup * bus/connection.c (bus_transaction_send_from_driver): set bus driver messages as no reply * bus/policy.c (bus_client_policy_check_can_receive): handle a requested_reply attribute on allow/deny rules * bus/system.conf: add <allow requested_reply="true"/> * bus/driver.c (bus_driver_handle_message): fix check for replies sent to the bus driver, which was backward. How did this ever work at all though? I think I'm missing something. * dbus/dbus-message.c (decode_header_data): require error and method return messages to have a reply serial field to be valid (_dbus_message_loader_queue_messages): break up this function; validate that reply serial and plain serial are nonzero; clean up the OOM/error handling. (get_uint_field): don't return -1 from this (dbus_message_create_header): fix signed/unsigned bug * bus/connection.c (bus_connections_expect_reply): save serial of the incoming message, not reply serial
75 lines
1.6 KiB
Makefile
75 lines
1.6 KiB
Makefile
|
|
if HAVE_GLIB
|
|
GLIB_SUBDIR=glib
|
|
GLIB_PC=dbus-glib-1.pc
|
|
endif
|
|
|
|
if HAVE_QT
|
|
QT_SUBDIR=qt
|
|
endif
|
|
|
|
if DBUS_USE_GCJ
|
|
GCJ_SUBDIR=gcj
|
|
endif
|
|
|
|
if DBUS_USE_MCS
|
|
MONO_SUBDIR=mono
|
|
endif
|
|
|
|
if HAVE_PYTHON
|
|
PYTHON_SUBDIR=python
|
|
endif
|
|
|
|
## really we should require gcj/mcs/python also but since they are
|
|
## annoying to install, we don't for now
|
|
dist-local:
|
|
if test -z "$(QT_SUBDIR)" || test -z "$(GLIB_SUBDIR)" ; then \
|
|
echo "You have to build with Qt and GLib to make dist" ; \
|
|
fi
|
|
|
|
SUBDIRS=dbus bus doc $(GLIB_SUBDIR) $(GCJ_SUBDIR) $(MONO_SUBDIR) $(QT_SUBDIR) $(PYTHON_SUBDIR) test tools
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = dbus-1.pc $(GLIB_PC)
|
|
|
|
DISTCLEANFILES = \
|
|
dbus-1.pc \
|
|
$(GLIB_PC)
|
|
|
|
EXTRA_DIST = \
|
|
HACKING \
|
|
dbus-1.pc.in \
|
|
dbus-glib-1.pc.in
|
|
|
|
all-local: Doxyfile
|
|
|
|
if DBUS_GCOV_ENABLED
|
|
clean-gcov:
|
|
find -name "*.da" -o -name "*.gcov" | xargs rm || true
|
|
|
|
## .PHONY so it always rebuilds it
|
|
.PHONY: coverage-report.txt
|
|
coverage-report.txt:
|
|
GCOV_FILES=`find dbus bus $(GLIB_SUBDIR) $(QT_SUBDIR) -name "*.bbg"` ; \
|
|
C_FILES= ; \
|
|
for F in $$GCOV_FILES; do \
|
|
C=`echo $$F | sed -e 's/.bbg/.c/g'` ; \
|
|
DA=`echo $$F | sed -e 's/.bbg/.da/g'` ; \
|
|
if test -e $$DA ; then \
|
|
C_FILES="$$C_FILES $$C" ; \
|
|
fi ; \
|
|
done ; \
|
|
echo $$C_FILES ; \
|
|
$(top_builddir)/test/decode-gcov --report $$C_FILES > coverage-report.txt
|
|
|
|
check-coverage: clean-gcov all check coverage-report.txt
|
|
cat coverage-report.txt
|
|
|
|
else
|
|
coverage-report.txt:
|
|
echo "Need to reconfigure with --enable-gcov"
|
|
|
|
check-coverage:
|
|
echo "Need to reconfigure with --enable-gcov"
|
|
|
|
endif
|