- If e is built with dbus support, pass the DBUS flag on to modules.

- Only export functions which don't require dbus from e_msgbus.h


SVN revision: 35327
devs/princeamd/enlightenment-0.17-elive
Sebastian Dransfeld 16 years ago
parent 8a51de3b25
commit 01ea425d45
  1. 4
      configure.in
  2. 4
      enlightenment.pc.in
  3. 10
      src/bin/e_msgbus.h

@ -221,14 +221,16 @@ PKG_CHECK_MODULES(E_HAL, ehal, have_ehal=yes, have_ehal=no)
# this is used to conditionally build modules which depend on E_DBUS
AM_CONDITIONAL(HAVE_EDBUS, test x$have_edbus = "xyes")
define_e_dbus=""
if test x$have_edbus = "xyes"; then
define_e_dbus="-DHAVE_EDBUS"
if test x$have_ehal = "xyes"; then
AC_DEFINE(HAVE_EDBUS, 1, [E_Dbus support])
fi
fi
e_libs=$E_LIBS" "$LIBINTL" "$fnmatch_libs" "
e_cflags="-DUSE_E_CONFIG_H "$E_CFLAGS" "$E_DBUS_CFLAGS" "
e_cflags="-DUSE_E_CONFIG_H "$define_e_dbus" "$E_CFLAGS" "$E_DBUS_CFLAGS" "
AC_SUBST(e_libs)
AC_SUBST(e_cflags)

@ -6,6 +6,6 @@ includedir=@includedir@/@PACKAGE@
Name: enlightenment
Description: Enlightenmnt Window Manager
Version: @VERSION@
Libs: @libdir@/@PACKAGE@/modules
Libs: -L${libdir}
Libs.private:
Cflags: -I${includedir}
Cflags: -I${includedir} @e_cflags@

@ -3,10 +3,6 @@
*/
#ifdef E_TYPEDEFS
#ifndef HAVE_EDBUS
#define E_DBus_Interface void
#endif
typedef struct _E_Msgbus_Data E_Msgbus_Data;
#else
@ -15,18 +11,20 @@ typedef struct _E_Msgbus_Data E_Msgbus_Data;
/* This is the dbus subsystem, but e_dbus namespace is taken by e_dbus */
#ifdef HAVE_EDBUS
struct _E_Msgbus_Data
{
#ifdef HAVE_EDBUS
E_DBus_Connection *conn;
E_DBus_Object *obj;
#endif
};
#endif
EAPI int e_msgbus_init(void);
EAPI int e_msgbus_shutdown(void);
#ifdef HAVE_EDBUS
EAPI void e_msgbus_interface_attach(E_DBus_Interface *iface);
EAPI void e_msgbus_interface_detach(E_DBus_Interface *iface);
#endif
#endif
#endif

Loading…
Cancel
Save