2021-03-03 19:04:47 +01:00
|
|
|
have_listenfd = false
|
2021-10-22 14:12:49 +02:00
|
|
|
have_no_touch_pointer_emulation = false
|
2021-02-04 17:56:28 +01:00
|
|
|
if xwayland.found()
|
2021-09-15 19:01:14 +02:00
|
|
|
xwayland_path = xwayland.get_variable('xwayland')
|
2021-10-22 14:12:49 +02:00
|
|
|
have_listenfd = xwayland.get_variable('have_listenfd',
|
|
|
|
default_value: 'false') == 'true'
|
|
|
|
have_no_touch_pointer_emulation = xwayland.get_variable(
|
|
|
|
'have_no_touch_pointer_emulation', default_value: 'false') == 'true'
|
2021-02-04 17:56:28 +01:00
|
|
|
else
|
|
|
|
xwayland_path = xwayland_prog.full_path()
|
|
|
|
endif
|
|
|
|
|
|
|
|
xwayland_config_data = configuration_data()
|
|
|
|
xwayland_config_data.set_quoted('XWAYLAND_PATH', xwayland_path)
|
2021-03-03 19:04:47 +01:00
|
|
|
xwayland_config_data.set10('HAVE_XWAYLAND_LISTENFD', have_listenfd)
|
2021-10-22 14:12:49 +02:00
|
|
|
xwayland_config_data.set10('HAVE_XWAYLAND_NO_TOUCH_POINTER_EMULATION', have_no_touch_pointer_emulation)
|
2021-02-04 17:56:28 +01:00
|
|
|
configure_file(
|
|
|
|
output: 'config.h',
|
|
|
|
configuration: xwayland_config_data,
|
|
|
|
)
|