From d67d45a8fd8492844ca5f06fc256282a97917c4c Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 29 May 2025 15:35:11 +0200 Subject: [PATCH] Teach meson about pkgconfig Requires.private Fixes: ed87c6dbb005 ("Add libudev and -lm to Requires.private") added Requires.private, 4f4bfae2a143 ("Add meson.build file") forgot to transplant the logic to meson.build. Fixes: 4f4bfae2a143 ("Add meson.build file") Signed-off-by: Jan Engelhardt Part-of: --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4fab5b31..97bcdbd8 100644 --- a/meson.build +++ b/meson.build @@ -451,7 +451,8 @@ pkgconfig.generate( name : 'Libinput', description : 'Input device library', version : meson.project_version(), - libraries : lib_libinput + libraries : lib_libinput, + requires_private : dep_udev, ) git_version_h = vcs_tag(command : ['git', 'describe'],