devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=0094ba4bf79c1c93e96b872774ecc9729579ca45

commit 0094ba4bf79c1c93e96b872774ecc9729579ca45
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Tue Feb 17 10:46:19 2015 -0500

    enlightenment: Fix building for wayland-only
    
    We don't have e_randr2 calls for wayland yet, so ifdef those out if we
    are building for wayland only
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/bin/e_actions.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c
index 203734f..dcf5158 100644
--- a/src/bin/e_actions.c
+++ b/src/bin/e_actions.c
@@ -2372,6 +2372,7 @@ ACT_FN_GO(suspend, )
 static Eina_Bool
 _have_lid_and_external_screens_on(void)
 {
+#ifndef HAVE_WAYLAND_ONLY
    Eina_List *l;
    E_Randr2_Screen *s;
    int lids = 0;
@@ -2386,6 +2387,7 @@ _have_lid_and_external_screens_on(void)
           ext_screens++;
      }
    if ((lids > 0) && (ext_screens > 0)) return EINA_TRUE;
+#endif
    return EINA_FALSE;
 }
 

-- 


Reply via email to