Commit 1ae03706 authored by Gildas Bazin's avatar Gildas Bazin

Fix for XCB_CURSOR_NONE undeclared issue

parent aa3f9ae3
...@@ -28,9 +28,6 @@ ...@@ -28,9 +28,6 @@
#include <assert.h> #include <assert.h>
#include <xcb/xcb.h> #include <xcb/xcb.h>
#ifndef XCB_CURSOR_NONE
# define XCB_CURSOR_NONE ((xcb_cursor_t) 0U)
#endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_vout_display.h> #include <vlc_vout_display.h>
......
...@@ -26,6 +26,10 @@ ...@@ -26,6 +26,10 @@
# define ORDER XCB_IMAGE_ORDER_LSB_FIRST # define ORDER XCB_IMAGE_ORDER_LSB_FIRST
#endif #endif
#ifndef XCB_CURSOR_NONE
# define XCB_CURSOR_NONE ((xcb_cursor_t) 0U)
#endif
#include <vlc_picture.h> #include <vlc_picture.h>
#include <vlc_vout_display.h> #include <vlc_vout_display.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment