From ecc7f01705192d657ab503f3d28b1ee190fc9652 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 13 Jul 2023 11:47:31 +0200 Subject: [PATCH] build: rename libdrm partial dep to be more explicit The variable is named "libdrm" but it's a partial dependency with just the headers. Reflect this in the name to avoid confusion (Meson variables are global to the whole project). --- examples/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/meson.build b/examples/meson.build index 9e01748c..e0e5720b 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -12,7 +12,7 @@ libavutil = dependency('libavutil', version: '>=56.14.100', required: false, dis libavcodec = dependency('libavcodec', version: '>=58.18.100', required: false, disabler: true) libavformat = dependency('libavformat', version: '>=58.12.100', required: false, disabler: true) # Only needed for drm_fourcc.h -libdrm = dependency('libdrm').partial_dependency(compile_args: true, includes: true) +libdrm_header = dependency('libdrm').partial_dependency(compile_args: true, includes: true) # epoll is a separate library in FreeBSD if host_machine.system() == 'freebsd' @@ -199,7 +199,7 @@ foreach name, info : compositors executable( name, [info.get('src'), extra_src], - dependencies: [wlroots, libdrm, info.get('dep', [])], + dependencies: [wlroots, libdrm_header, info.get('dep', [])], build_by_default: get_option('examples'), ) endforeach