diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-24 12:15:47 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-24 12:15:47 +0000 |
commit | 1d17007319cd8a0479c445724dfb731bd1959a03 (patch) | |
tree | c7f17b8ce00050752ad0ab94355ff02029a0a580 /sys-apps/dbus/files | |
parent | Use global USE flag "upower" for use of UPower (diff) | |
download | historical-1d17007319cd8a0479c445724dfb731bd1959a03.tar.gz historical-1d17007319cd8a0479c445724dfb731bd1959a03.tar.bz2 historical-1d17007319cd8a0479c445724dfb731bd1959a03.zip |
Fix building with USE="debug" using a patch from upstream bugzilla wrt #507232. Thanks to Richard H. and "Alpha Bravo" for reporting.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Manifest-Sign-Key: 0x4868F14D
Diffstat (limited to 'sys-apps/dbus/files')
-rw-r--r-- | sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch b/sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch new file mode 100644 index 000000000000..98e2d524af1d --- /dev/null +++ b/sys-apps/dbus/files/dbus-1.8.6-enable-stats_compile_failure.patch @@ -0,0 +1,38 @@ +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 <alban.crequy@collabora.co.uk> +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 + |