server/x11: build fix when xfixes is disabled

This commit is contained in:
Bernhard Miklautz 2013-06-13 15:46:31 +02:00
parent 0fd6439123
commit c96cbb7f74
2 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,7 @@
int xf_cursor_init(xfInfo* xfi) int xf_cursor_init(xfInfo* xfi)
{ {
#ifdef WITH_XFIXES
int event; int event;
int error; int error;
@ -50,6 +51,7 @@ int xf_cursor_init(xfInfo* xfi)
xfi->xfixes_notify_event = event + XFixesCursorNotify; xfi->xfixes_notify_event = event + XFixesCursorNotify;
XFixesSelectCursorInput(xfi->display, DefaultRootWindow(xfi->display), XFixesDisplayCursorNotifyMask); XFixesSelectCursorInput(xfi->display, DefaultRootWindow(xfi->display), XFixesDisplayCursorNotifyMask);
#endif
return 0; return 0;
} }

View File

@ -80,12 +80,14 @@ void* xf_update_thread(void* param)
ResetEvent(xfp->updateSentEvent); ResetEvent(xfp->updateSentEvent);
} }
} }
#ifdef WITH_XFIXES
else if (xevent.type == xfi->xfixes_notify_event) else if (xevent.type == xfi->xfixes_notify_event)
{ {
XFixesCursorImage* ci = XFixesGetCursorImage(xfi->display); XFixesCursorImage* ci = XFixesGetCursorImage(xfi->display);
XFree(ci); XFree(ci);
} }
#endif
} }
end = GetTickCount(); end = GetTickCount();