From 57e5fd31d1f847845e443c0017b994744af6ea56 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Fri, 14 Oct 2011 07:23:09 +0000 Subject: [PATCH] put in hardcoded bitmask define if headers dont provide it. SVN revision: 64068 --- legacy/ecore/src/lib/ecore_x/xlib/ecore_x_xi2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_xi2.c b/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_xi2.c index d7b569c787..fecd4c27d9 100644 --- a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_xi2.c +++ b/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_xi2.c @@ -14,6 +14,10 @@ int _ecore_x_xi2_opcode = -1; +#ifndef XIPointerEmulated +#define XIPointerEmulated (1 << 16) +#endif + #ifdef ECORE_XI2 static XIDeviceInfo *_ecore_x_xi2_devs = NULL; static int _ecore_x_xi2_num = 0;