On Thursday 03 January 2013  22:07, Lucas De Marchi wrote :
> On Thu, Jan 3, 2013 at 12:18 PM, Jérémy Zurcher <[email protected]> wrote:
> > EAPI extern int E_DBUS_DOMAIN_GLOBAL; is not implemented
> >
> > patch attached
> 
> Even if it's not used, it's an exported symbol. Removing it means
> API/ABI break since applications that were previously compiled might
> stop working.
like applications that are compiled and never linked :o)
(really not the same as the other e_dbus API case)
 ... fair enough, let's implement this never used will never be symbol.

patch attached,
I suppose that's what should be done with this E_DBUS_DOMAIN_GLOBAL

regards
Jérémy
> 
> 
> Lucas De Marchi
> 
> ------------------------------------------------------------------------------
> Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
> much more. Get web development skills now with LearnDevNow -
> 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
> SALE $99.99 this month only -- learn more at:
> http://p.sf.net/sfu/learnmore_122812
> _______________________________________________
> enlightenment-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
diff --git a/e_dbus/src/lib/dbus/e_dbus.c b/e_dbus/src/lib/dbus/e_dbus.c
index 8ab84dc..af7ad94 100644
--- a/e_dbus/src/lib/dbus/e_dbus.c
+++ b/e_dbus/src/lib/dbus/e_dbus.c
@@ -27,6 +27,7 @@ static int connection_slot = -1;
 
 static int _edbus_init_count = 0;
 static int close_connection = 0;
+EAPI int E_DBUS_DOMAIN_GLOBAL = 0;
 EAPI int E_DBUS_EVENT_SIGNAL = 0;
 
 static E_DBus_Connection *shared_connections[2] = {NULL, NULL};
@@ -597,6 +598,7 @@ e_dbus_init(void)
     }
 
 
+  E_DBUS_DOMAIN_GLOBAL = _e_dbus_log_dom;
   E_DBUS_EVENT_SIGNAL = ecore_event_type_new();
   e_dbus_object_init();
 
------------------------------------------------------------------------------
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to