Disable libinput integration if >= 0.8 is found
libinput 0.8 is incompatible causing the build to fail. As we are in dependency freeze the only option is to disable the build. BUG: 342893 FIXED-IN: 5.2.1
This commit is contained in:
parent
b62bf43236
commit
a93a2ab191
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ set_package_properties(UDev PROPERTIES URL "http://www.freedesktop.org/software
|
|||
PURPOSE "Required for input handling on Wayland."
|
||||
)
|
||||
set(HAVE_INPUT FALSE)
|
||||
if (Libinput_FOUND AND UDEV_FOUND)
|
||||
if (Libinput_FOUND AND UDEV_FOUND AND Libinput_VERSION VERSION_LESS 0.8)
|
||||
set(HAVE_INPUT TRUE)
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue