From 55d863fc7110fbdc790f777d03ffd21c024cef6d Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 7 Jun 2006 12:21:47 -0400 Subject: [PATCH] Add a few missing files to the makefiles, --- sugar/browser/Makefile.am | 7 ++++++- sugar/p2p/presence.py | 4 ++-- sugar/shell/Makefile.am | 3 ++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/sugar/browser/Makefile.am b/sugar/browser/Makefile.am index 7aacdd8a..5a709c00 100644 --- a/sugar/browser/Makefile.am +++ b/sugar/browser/Makefile.am @@ -2,7 +2,12 @@ sugardir = $(pythondir)/sugar/browser sugar_PYTHON = \ __init__.py \ browser.py \ - NotificationBar.py + NotificationBar.py \ + BrowserShell.py \ + WebActivity.py \ + AddressItem.py \ + BrowserActivity.py \ + NavigationToolbar.py icondir = $(pkgdatadir) icon_DATA = \ diff --git a/sugar/p2p/presence.py b/sugar/p2p/presence.py index 9d11d7e4..9cb297e9 100644 --- a/sugar/p2p/presence.py +++ b/sugar/p2p/presence.py @@ -1,6 +1,6 @@ # -*- tab-width: 4; indent-tabs-mode: t -*- -import avahi, dbus, dbus.glib, dbus_bindings +import avahi, dbus, dbus.glib, dbus.dbus_bindings ACTION_SERVICE_NEW = 'new' ACTION_SERVICE_REMOVED = 'removed' @@ -97,7 +97,7 @@ class PresenceAnnounce(object): "", "", # domain, host (let the system figure it out) dbus.UInt16(rs_port), info,) g.Commit() - except dbus_bindings.DBusException, exc: + except dbus.dbus_bindings.DBusException, exc: # FIXME: ignore local name collisions, since that means # the zeroconf service is already registered. Ideally we # should un-register it an re-register with the correct info diff --git a/sugar/shell/Makefile.am b/sugar/shell/Makefile.am index a768aad6..387838d7 100644 --- a/sugar/shell/Makefile.am +++ b/sugar/shell/Makefile.am @@ -2,4 +2,5 @@ sugardir = $(pythondir)/sugar/shell sugar_PYTHON = \ __init__.py \ activity.py \ - shell.py + shell.py \ + PresenceWindow.py