ssuominen 14/07/24 12:15:40 Added: dbus-1.8.6-enable-stats_compile_failure.patch Log: Fix building with USE="debug" using a patch from upstream bugzilla wrt #507232. Thanks to Richard H. and "Alpha Bravo" for reporting. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path 1.1 sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch?rev=1.1&content-type=text/plain Index: dbus-1.8.6-enable-stats_compile_failure.patch =================================================================== http://bugs.freedesktop.org/show_bug.cgi?id=81043#c3 http://bugs.freedesktop.org/show_bug.cgi?id=81043#c4 >From e8cf569f51e4d1ebaf190d8d8d16f84dd1364bae Mon Sep 17 00:00:00 2001 From: Alban Crequy <[email protected]> Date: Thu, 24 Jul 2014 08:04:48 +0100 Subject: [PATCH] Stats: fix compilation issue http://bugs.gentoo.org/show_bug.cgi?id=507232 --- bus/stats.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bus/stats.c b/bus/stats.c index 2bf86d6..24308eb 100644 --- a/bus/stats.c +++ b/bus/stats.c @@ -40,6 +40,7 @@ bus_stats_handle_get_stats (DBusConnection *connection, DBusMessage *message, DBusError *error) { + BusContext *context; BusConnections *connections; DBusMessage *reply = NULL; DBusMessageIter iter, arr_iter; @@ -48,7 +49,8 @@ bus_stats_handle_get_stats (DBusConnection *connection, _DBUS_ASSERT_ERROR_IS_CLEAR (error); - connections = bus_context_get_connections (transaction->context); + context = bus_transaction_get_context (transaction); + connections = bus_context_get_connections (context); reply = _dbus_asv_new_method_return (message, &iter, &arr_iter); -- 1.8.5.3
