Commit 9305440a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use a different plugin for X11 screen

parent 364868f9
......@@ -3967,9 +3967,9 @@ AC_CHECK_HEADERS(X11/Xlib.h, [
VLC_ADD_CPPFLAGS([vlc], [${X_CFLAGS}])
VLC_ADD_LIBS([vlc], [${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_PLUGIN([screen])
VLC_ADD_CPPFLAGS([screen],[${X_CFLAGS}])
VLC_ADD_LIBS([screen],[${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_PLUGIN([x11_screen])
VLC_ADD_CPPFLAGS([x11_screen],[${X_CFLAGS}])
VLC_ADD_LIBS([x11_screen],[${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_PLUGIN([panoramix])
VLC_ADD_LIBS([panoramix],[${X_LIBS} ${X_PRE_LIBS} -lX11])
......
......@@ -6,8 +6,6 @@ screen_extra = beos.cpp
else
if HAVE_DARWIN
screen_extra = mac.c
else
screen_extra = x11.c
endif
endif
endif
......@@ -16,3 +14,9 @@ SOURCES_screen = \
screen.h \
$(screen_extra) \
$(NULL)
SOURCES_x11_screen = \
screen.c \
screen.h \
x11.c \
$(NULL)
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