Call a input_set_default_property() in evdev_device_create if this function is exist
authorJengHyun Kang <jhyuni.kang@samsung.com>
Tue, 12 Jul 2016 08:52:27 +0000 (17:52 +0900)
committerduna.oh <duna.oh@samsung.com>
Fri, 27 Jan 2023 05:07:08 +0000 (14:07 +0900)
Change-Id: Ib47c6115248204d9ff63ced802c557b1bf5ad5f5

meson.build
src/evdev.c

index ac8219b..e7bc1de 100644 (file)
@@ -173,6 +173,11 @@ if dep_ttrace.found()
        config_h.set10('ENABLE_TTRACE', 1)
 endif
 
+############ check udev function  ############
+
+if cc.has_function('input_set_default_property', dependencies : dep_udev)
+       config_h.set10('HAVE_INPUT_SET_DEFAULT_PROPERTY', 1)
+endif
 
 ############ udev bits ############
 
index 9e18161..cb9badf 100644 (file)
@@ -2442,10 +2442,16 @@ evdev_device_create(struct libinput_seat *seat,
        int rc;
        int fd = -1;
        int unhandled_device = 0;
-       const char *devnode = udev_device_get_devnode(udev_device);
+       const char *devnode;
        char *sysname = str_sanitize(udev_device_get_sysname(udev_device));
        char buf[STRERR_BUFSIZE] = {0, };
 
+#ifdef HAVE_INPUT_SET_DEFAULT_PROPERTY
+       if (input_set_default_property(udev_device) < 0)
+               return NULL;
+#endif
+       devnode = udev_device_get_devnode(udev_device);
+
        if (!devnode) {
                log_info(libinput, "%s: no device node associated\n", sysname);
                goto err;