From: Peter Hutterer Date: Mon, 11 Jul 2022 05:45:26 +0000 (+1000) Subject: meson: drop the uinput.h header listing X-Git-Tag: accepted/tizen/unified/20231121.102917~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8bcf9fe2f9ee09bc11cfdb72d501a4d74d147e5e;p=platform%2Fupstream%2Flibevdev.git 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 --- 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'