kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=55392259d53af2e433b334018ed5c8aafb8f2c2d
commit 55392259d53af2e433b334018ed5c8aafb8f2c2d Author: Kim Woelders <[email protected]> Date: Sun Aug 24 14:41:50 2014 +0200 Fix build without composite. We really just need render and fixes here but.. some other day. --- src/cursors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cursors.c b/src/cursors.c index 85bc206..ee993ed 100644 --- a/src/cursors.c +++ b/src/cursors.c @@ -28,7 +28,7 @@ #include "list.h" #include "xwin.h" #include <X11/cursorfont.h> -#if USE_XRENDER +#if USE_COMPOSITE #include <X11/extensions/Xfixes.h> #include <X11/extensions/Xrender.h> #endif @@ -46,7 +46,7 @@ struct _ecursor { static LIST_HEAD(cursor_list); -#if USE_XRENDER +#if USE_COMPOSITE /* Assuming we have XRenderCreateCursor (render >= 0.5) */ static EX_Cursor ECreatePixmapCursor(EX_Pixmap cpmap, EX_Pixmap cmask, unsigned int w, --
