From 15620ecc7cfb3fdaca971c0d2406519e3ebd4769 Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Thu, 10 Jan 2019 12:13:21 +0000 Subject: [PATCH] meson: define HAVE_TSLIB once tslib option is set Nowhere refers to the tslib option This patch provides a way to set HAVE_TSLIB Differential Revision: https://phab.enlightenment.org/D7582 --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 5299ad2262..0e2a50c2c9 100644 --- a/meson.build +++ b/meson.build @@ -228,6 +228,10 @@ config_h.set_quoted('MOD_SUFFIX', '.'+sys_mod_extension) config_h.set_quoted('EXE_SUFFIX', '.'+sys_exe_extension) config_h.set('EFL_BUILD', '1') +if get_option('tslib') == true + config_h.set('HAVE_TSLIB', '1') +endif + subdir('header_checks') subdir('po')