Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        Makefile.am edebug.h main.c 
Added Files:
        edbus.c edbus.h 


Log Message:
Play with dbus - implement command interface.

===================================================================
RCS file: /cvs/e/e16/e/src/Makefile.am,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -3 -r1.96 -r1.97
--- Makefile.am 28 Nov 2007 19:21:47 -0000      1.96
+++ Makefile.am 8 Dec 2007 17:54:38 -0000       1.97
@@ -13,6 +13,9 @@
 if ENABLE_COMPOSITE
 SRCS_ECOMPMGR = ecompmgr.c ecompmgr.h magwin.c
 endif
+if ENABLE_DBUS
+SRCS_DBUS = edbus.c edbus.h
+endif
 if USE_ESNPRINTF
 SRCS_SNPRINTF = snprintf.c
 endif
@@ -108,6 +111,7 @@
        $(SRCS_GNOME)           \
        $(SRCS_GLX)             \
        $(SRCS_ECOMPMGR)        \
+       $(SRCS_DBUS)            \
        $(SRCS_SNPRINTF)
 
 e16_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) \
@@ -115,6 +119,7 @@
        $(MODULE_CFLAGS) \
        $(IMLIB2_CFLAGS) \
        $(X_CFLAGS) \
+       $(DBUS_CFLAGS) \
        -D LOCALEDIR=\"$(localedir)\" \
        -D ENLIGHTENMENT_BIN=\"$(bindir)\" \
        -D ENLIGHTENMENT_LIB=\"$(pkglibdir)\" \
@@ -132,6 +137,7 @@
        $(XINERAMA_LIBS)        \
        $(X_EXTRA_LIBS)         \
        $(E_X_LIBS)             \
+       $(DBUS_LIBS)            \
        -lX11 -lm
 
 if BUILD_MODULES
===================================================================
RCS file: /cvs/e/e16/e/src/edebug.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- edebug.h    29 Mar 2007 20:54:55 -0000      1.4
+++ edebug.h    8 Dec 2007 17:54:38 -0000       1.5
@@ -48,6 +48,7 @@
 #define EDBUG_TYPE_PAGER        146
 #define EDBUG_TYPE_SELECTION    147
 #define EDBUG_TYPE_FONTS        148
+#define EDBUG_TYPE_DBUS         149
 
 #define EDBUG_TYPE_COMPMGR      161
 #define EDBUG_TYPE_COMPMGR2     162
===================================================================
RCS file: /cvs/e/e16/e/src/main.c,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -3 -r1.161 -r1.162
--- main.c      3 Nov 2007 11:57:31 -0000       1.161
+++ main.c      8 Dec 2007 17:54:38 -0000       1.162
@@ -26,6 +26,7 @@
 #include "cursors.h"
 #include "desktops.h"
 #include "dialog.h"
+#include "edbus.h"
 #include "eimage.h"
 #include "emodule.h"
 #include "events.h"
@@ -252,6 +253,10 @@
    CommsInit();
    SessionInit();
    LoadSnapInfo();
+
+#if USE_DBUS
+   DbusInit();
+#endif
 
    ModulesSignal(ESIGNAL_INIT, NULL);
 



-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to