devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e711a294b23d4132a1ff3a0039948e2ca39e3735
commit e711a294b23d4132a1ff3a0039948e2ca39e3735 Author: Chris Michael <[email protected]> Date: Tue Jul 15 09:27:19 2014 -0400 ecore-drm: Remove eldbus header and add dbus header Signed-off-by: Chris Michael <[email protected]> --- src/lib/ecore_drm/ecore_drm_private.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_private.h b/src/lib/ecore_drm/ecore_drm_private.h index cb4ec2e..1cba3bd 100644 --- a/src/lib/ecore_drm/ecore_drm_private.h +++ b/src/lib/ecore_drm/ecore_drm_private.h @@ -4,19 +4,21 @@ # include "Ecore.h" # include "ecore_private.h" # include "Ecore_Input.h" -# include "Eldbus.h" # include <stdio.h> # include <stdlib.h> # include <string.h> # include <unistd.h> # include <errno.h> -# include <sys/mman.h> # include <fcntl.h> +# include <sys/mman.h> +# include <sys/stat.h> +# include <sys/ioctl.h> # include <libudev.h> # include <linux/input.h> //# include <libinput.h> +# include <dbus/dbus.h> # include <systemd/sd-login.h> # include <xkbcommon/xkbcommon.h> @@ -226,7 +228,8 @@ struct _Ecore_Drm_Sprite }; Eina_Bool _ecore_drm_dbus_init(const char *session); -void _ecore_drm_dbus_shutdown(const char *session); +void _ecore_drm_dbus_shutdown(void); +int _ecore_drm_dbus_device_open(const char *device); Ecore_Drm_Evdev *_ecore_drm_evdev_device_create(Ecore_Drm_Seat *seat, const char *path, int fd); void _ecore_drm_evdev_device_destroy(Ecore_Drm_Evdev *evdev); --
