aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Lourenço <rodrigo.z.lourenco@tecnico.ulisboa.pt>2018-02-14 18:27:31 +0000
committerRodrigo Lourenço <rzl@l2f.inesc-id.pt>2018-02-14 18:42:39 +0000
commit168e26489a0e6301ce6c383413ff9cc415d4f8ed (patch)
tree1609f49997330fd6c269e5d69851d286524ff640
parent71cba94e73022d8cef8651055204a4706377ae11 (diff)
Add missing dependencies
-rw-r--r--backend/meson.build9
-rw-r--r--render/meson.build2
-rw-r--r--types/meson.build2
-rw-r--r--xwayland/meson.build1
4 files changed, 8 insertions, 6 deletions
diff --git a/backend/meson.build b/backend/meson.build
index bac43063..c0ed76f1 100644
--- a/backend/meson.build
+++ b/backend/meson.build
@@ -28,14 +28,15 @@ backend_files = files(
)
backend_deps = [
- wayland_server,
+ drm,
egl,
gbm,
libinput,
- wlr_render,
- wlr_protos,
- drm,
pixman,
+ xkbcommon,
+ wayland_server,
+ wlr_protos,
+ wlr_render,
]
if host_machine.system().startswith('freebsd')
diff --git a/render/meson.build b/render/meson.build
index 1a5a85b8..8aa70cea 100644
--- a/render/meson.build
+++ b/render/meson.build
@@ -22,7 +22,7 @@ lib_wlr_render = static_library(
glapi[0],
glapi[1],
include_directories: wlr_inc,
- dependencies: [glesv2, egl, pixman],
+ dependencies: [egl, glesv2, pixman, wayland_server],
)
wlr_render = declare_dependency(
diff --git a/types/meson.build b/types/meson.build
index 2731f9bc..329009bf 100644
--- a/types/meson.build
+++ b/types/meson.build
@@ -28,5 +28,5 @@ lib_wlr_types = static_library(
'wlr_xdg_shell_v6.c',
),
include_directories: wlr_inc,
- dependencies: [wayland_server, pixman, wlr_protos],
+ dependencies: [pixman, xkbcommon, wayland_server, wlr_protos],
)
diff --git a/xwayland/meson.build b/xwayland/meson.build
index de05cfaa..2ccdf4cb 100644
--- a/xwayland/meson.build
+++ b/xwayland/meson.build
@@ -15,6 +15,7 @@ lib_wlr_xwayland = static_library(
xcb_image,
xcb_render,
xcb_icccm,
+ xkbcommon,
pixman,
],
)