From 98cb370ffb40eab57ed739ecdc47b875525f2b27 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 1 Sep 2009 16:03:48 +0200 Subject: CommLayerServerDBus: rewrote to use dbus, not dbus-c++ Expect some rough edges. On the plus side: (1) -15 kb in our own code: text data bss dec hex filename 209057 2664 2640 214361 34559 abrt.z5/abrt-0.0.8/src/Daemon/.libs/abrt 194958 2576 2320 199854 30cae abrt.z6/abrt-0.0.8/src/Daemon/.libs/abrt (2) this will allow us to stop using libdbus-c++-1.so.0 in the future (-200kb of code) (3) a lot of logging added (most on -vvv verbosity level) to help with debug Signed-off-by: Denys Vlasenko --- src/Daemon/Daemon.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/Daemon/Daemon.cpp') diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp index ea41302e..ddde1151 100644 --- a/src/Daemon/Daemon.cpp +++ b/src/Daemon/Daemon.cpp @@ -621,7 +621,6 @@ int main(int argc, char** argv) throw 1; /* (comment here) */ #ifdef ENABLE_DBUS - attach_dbus_dispatcher_to_glib_main_context(); g_pCommLayer = new CCommLayerServerDBus(); #elif ENABLE_SOCKET g_pCommLayer = new CCommLayerServerSocket(); -- cgit