summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel@osg.samsung.com>2017-12-03 13:16:01 +0000
committerMarcel Hollerbach <marcel@osg.samsung.com>2017-12-03 13:16:01 +0000
commit9581a482804d1a3edc2d3697cb57026fc24d8f6f (patch)
tree02756799bd8eaa10078475e91cfe14378c910846
parentc1177a1c1574c681cab1a0ef744f2eb944f51541 (diff)
downloadenlightenment-9581a482804d1a3edc2d3697cb57026fc24d8f6f.tar.gz
meson: wl_drm now requires libdrm
this fixes building
-rw-r--r--src/modules/wl_drm/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/wl_drm/meson.build b/src/modules/wl_drm/meson.build
index b46d806431..7c86f07f43 100644
--- a/src/modules/wl_drm/meson.build
+++ b/src/modules/wl_drm/meson.build
@@ -1,7 +1,7 @@
if get_option('wayland') != true or dep_ecore_drm2.found() != true
disable = true
else
- deps = [dependency('elput')]
+ deps = [dependency('elput'), dependency('libdrm')]
src = files(
'e_mod_main.c'