From faff5bbdf5dec53101a9d8f624f45262016154c1 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Mon, 5 Apr 2021 16:24:46 +0300 Subject: [PATCH] meson: Sync the name of INPUTTHREAD conf macro with autotools build The rest of dix code uses INPUTTHREAD, so having a different name in meson configuration was an oversight. Fixes: https://gitlab.freedesktop.org/xorg/xserver/-/issues/936 Signed-off-by: Povilas Kanapickas --- include/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/meson.build b/include/meson.build index def96d103..e41d2f6cf 100644 --- a/include/meson.build +++ b/include/meson.build @@ -60,7 +60,7 @@ else enable_input_thread = false endif endif -conf_data.set('HAVE_INPUTTHREAD', enable_input_thread) +conf_data.set('INPUTTHREAD', enable_input_thread ? '1' : false) if cc.compiles(''' #define _GNU_SOURCE 1