meson: drop the uinput.h header listing
authorPeter Hutterer <peter.hutterer@who-t.net>
Mon, 11 Jul 2022 05:45:26 +0000 (15:45 +1000)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 17 Nov 2023 10:55:47 +0000 (19:55 +0900)
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 <peter.hutterer@who-t.net>
meson.build

index 1cbe7f5f1c3d4f8967c279979bec8ba5cec743ad..6af64e693a3ae3166dedf4224b7a5cda8e490b4a 100644 (file)
@@ -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'