mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
vl/dri: Move the DRI3 check out of sources include into C.
Fixes SCons build. Trivial. Built locally with SCons and autotools.
This commit is contained in:
parent
5e2072c711
commit
cf010de6ee
2 changed files with 5 additions and 5 deletions
|
|
@ -352,13 +352,9 @@ VL_SOURCES := \
|
|||
# XXX: Nuke this as our dri targets no longer depend on VL.
|
||||
VL_WINSYS_SOURCES := \
|
||||
vl/vl_winsys_dri.c \
|
||||
vl/vl_winsys_dri3.c \
|
||||
vl/vl_winsys_drm.c
|
||||
|
||||
if HAVE_DRI3
|
||||
VL_WINSYS_SOURCES += \
|
||||
vl/vl_winsys_dri3.c
|
||||
endif
|
||||
|
||||
VL_STUB_SOURCES := \
|
||||
vl/vl_stubs.c
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#if defined(HAVE_DRI3)
|
||||
|
||||
#include <fcntl.h>
|
||||
|
||||
#include <X11/Xlib-xcb.h>
|
||||
|
|
@ -704,3 +706,5 @@ free_screen:
|
|||
FREE(scrn);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#endif // defined(HAVE_DRI3)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue