summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas@radix.lt>2021-04-05 16:24:46 +0300
committerPovilas Kanapickas <povilas@radix.lt>2021-04-09 11:18:54 +0000
commitfaff5bbdf5dec53101a9d8f624f45262016154c1 (patch)
tree2b04fb2abed676ab1fd7d5907da7f93fac1b8e34 /include
parentb25795462f4754ec2e3c677a41dea33ed1be79da (diff)
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 <povilas@radix.lt>
Diffstat (limited to 'include')
-rw-r--r--include/meson.build2
1 files changed, 1 insertions, 1 deletions
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