2021-03-03 19:04:47 +01:00
|
|
|
have_listenfd = false
|
2021-02-04 17:56:28 +01:00
|
|
|
if xwayland.found()
|
2021-04-06 12:06:05 +02:00
|
|
|
xwayland_path = xwayland.get_variable(pkgconfig: 'xwayland')
|
|
|
|
have_listenfd = xwayland.get_variable(pkgconfig: 'have_listenfd') == '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-02-04 17:56:28 +01:00
|
|
|
configure_file(
|
|
|
|
output: 'config.h',
|
|
|
|
configuration: xwayland_config_data,
|
|
|
|
)
|