summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Stone <[email protected]>2017-10-26 11:56:22 +0100
committerEmil Velikov <[email protected]>2017-10-27 21:33:04 +0100
commitc7e625df6966588c4e71a8d13e147792a76215b2 (patch)
tree10cbc9aec0f19d21efb2d53a6688cf32b78b3af3
parent5addf041efe3f5874bbcfa1a950f25f2b192bbf0 (diff)
meson: wayland-egl depends on wayland-client
Since wayland-egl.h is currently provided by the core Wayland package, depend on wayland-client to make sure we get it in our include path. Signed-off-by: Daniel Stone <[email protected]> Acked-by: Emil Velikov <[email protected]> Fixes: 108d257a16 ("meson: build libEGL") Cc: Tobias Klausmann <[email protected]> Cc: Dylan Baker <[email protected]> Cc: Gert Wollny <[email protected]> (cherry picked from commit 9f7ed60b3eae9d3d20805e79c9ab67674619e2cd)
-rw-r--r--src/egl/wayland/wayland-egl/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/wayland/wayland-egl/meson.build b/src/egl/wayland/wayland-egl/meson.build
index 5e7c3103843..f380e96ee32 100644
--- a/src/egl/wayland/wayland-egl/meson.build
+++ b/src/egl/wayland/wayland-egl/meson.build
@@ -24,6 +24,7 @@ libwayland_egl = shared_library(
'wayland-egl.c',
c_args : [c_vis_args],
link_args : ld_args_gc_sections,
+ dependencies : dep_wayland_client,
version : '1.0.0',
install : true,
)