[systemd-commits] 2 commits - configure.ac fixme src/systemadm.vala

Lennart Poettering lennart at kemper.freedesktop.org
Wed Jul 21 17:26:35 PDT 2010


 configure.ac       |    2 +-
 fixme              |    2 ++
 src/systemadm.vala |    2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 5e5c6cd737758dea83f9a712d102b7a8d4677f6f
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Jul 22 02:26:27 2010 +0200

    update fixme

diff --git a/fixme b/fixme
index 680d7f6..ec2f721 100644
--- a/fixme
+++ b/fixme
@@ -74,6 +74,8 @@ https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
+https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
+http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
 
 Regularly:
commit d3d91d10c9ca3782c5936c630e87730e3bf9c32d
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Jul 22 02:21:42 2010 +0200

    build-sys: fix compatibility with vala 0.9

diff --git a/configure.ac b/configure.ac
index eef4391..b06fc2f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -183,7 +183,7 @@ if test "x$enable_gtk" != "xno"; then
 fi
 AM_CONDITIONAL(HAVE_GTK, [test "$have_gtk" = "yes"])
 
-AM_PROG_VALAC([0.8])
+AM_PROG_VALAC([0.9])
 AC_SUBST(VAPIDIR)
 AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
 
diff --git a/src/systemadm.vala b/src/systemadm.vala
index 65a58b7..3610e2b 100644
--- a/src/systemadm.vala
+++ b/src/systemadm.vala
@@ -297,7 +297,7 @@ public class MainWindow : Window {
 
                 bbox.pack_start(cancel_button, false, true, 0);
 
-                bus = Bus.get(session ? BusType.SESSION : BusType.SYSTEM);
+                bus = DBus.Bus.get(session ? DBus.BusType.SESSION : DBus.BusType.SYSTEM);
 
                 manager = bus.get_object(
                                 "org.freedesktop.systemd1",


More information about the systemd-commits mailing list