Commit 3e87f592 authored by Rafaël Carré's avatar Rafaël Carré

caca: X11 availability doesn't mean we use it (on OSX)

parent 0e933838
......@@ -88,10 +88,13 @@ static int Open(vlc_object_t *object)
vout_display_t *vd = (vout_display_t *)object;
vout_display_sys_t *sys;
#ifndef X_DISPLAY_MISSING
#if !defined(__APPLE__)
# ifndef X_DISPLAY_MISSING
if (!vlc_xlib_init(object))
return VLC_EGENERIC;
# endif
#endif
#if defined(WIN32) && !defined(UNDER_CE)
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
SMALL_RECT rect;
......
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