From 8bcf9fe2f9ee09bc11cfdb72d501a4d74d147e5e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 11 Jul 2022 15:45:26 +1000 Subject: [PATCH] meson: drop the uinput.h header listing This is a noop, meson gets its compile dependencies from the compiler, listing it here makes no difference. Same is true for listing the other two linux/input/*.h headers as sources. Signed-off-by: Peter Hutterer --- meson.build | 4 ---- 1 file changed, 4 deletions(-) diff --git a/meson.build b/meson.build index 1cbe7f5..6af64e6 100644 --- a/meson.build +++ b/meson.build @@ -41,7 +41,6 @@ dep_lm = cc.find_library('m') dep_rt = cc.find_library('rt') input_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input.h' -uinput_h = dir_root / 'include' / 'linux' / host_machine.system() / 'uinput.h' input_event_codes_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input-event-codes.h' # event-names.h @@ -68,9 +67,6 @@ src_libevdev = [ 'libevdev/libevdev-names.c', 'include/linux/input.h', 'include/linux/uinput.h', - input_event_codes_h, - input_h, - uinput_h ] mapfile = dir_src / 'libevdev.sym' -- 2.34.1