From 20b092d8b478b4d2f8850a772594a2c4457b2a35 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Thu, 24 Oct 2019 13:25:13 +0300 Subject: [PATCH] backend-x11: need libdrm headers in build 9ddb3bc315adbc0c3951f00458fe05973fd13ef6 started using drm_fourcc.h but forgot to add libdrm headers to the dependencies. This fixes the build for build-native-meson-no-gl-renderer when a future patch reduces the dependencies pulled in by the libweston dependency object. Signed-off-by: Pekka Paalanen --- libweston/backend-x11/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/libweston/backend-x11/meson.build b/libweston/backend-x11/meson.build index adae2cb0..3e6ca54f 100644 --- a/libweston/backend-x11/meson.build +++ b/libweston/backend-x11/meson.build @@ -17,6 +17,7 @@ endif deps_x11 = [ dep_libweston_private, + dep_libdrm_headers, dep_x11_xcb, dep_lib_cairo_shared, dep_pixman,