devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6935c4febd2626c1fb840767517f8c8ec9d50728
commit 6935c4febd2626c1fb840767517f8c8ec9d50728 Author: Chris Michael <cp.mich...@samsung.com> Date: Fri Jul 11 14:50:57 2014 -0400 ecore-drm: Add necessary headers for dbus and systemd-login This feature allows us to open input devices and receive events from them as a normal user without the need for special input device permissions, or the need for a slave suid binary. NB: This will only wor with dbus & systemd support @feature Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/lib/ecore_drm/ecore_drm_private.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ecore_drm/ecore_drm_private.h b/src/lib/ecore_drm/ecore_drm_private.h index 16c89f6..c6cdb1c 100644 --- a/src/lib/ecore_drm/ecore_drm_private.h +++ b/src/lib/ecore_drm/ecore_drm_private.h @@ -4,6 +4,7 @@ # include "Ecore.h" # include "ecore_private.h" # include "Ecore_Input.h" +# include "Eldbus.h" # include <stdio.h> # include <stdlib.h> @@ -16,6 +17,7 @@ # include <libudev.h> # include <linux/input.h> //# include <libinput.h> +# include <systemd/sd-login.h> # include <xkbcommon/xkbcommon.h> # include <xf86drm.h> --