From 5379b31440c11091dd4739f7d82c6b3fdc675871 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Fri, 11 Jan 2019 09:18:36 -0500 Subject: [PATCH] ecore_fb: Add missing tslib dependency If EFL is built with tslib support, which is used by ecore_fb, then we need to add a dependency on tslib else the build will fail to compile (undefined reference to ts_open function). --- src/lib/ecore_fb/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/ecore_fb/meson.build b/src/lib/ecore_fb/meson.build index 0bcf11e..a2eb540 100644 --- a/src/lib/ecore_fb/meson.build +++ b/src/lib/ecore_fb/meson.build @@ -1,6 +1,10 @@ ecore_fb_deps = [ecore, ecore_input] ecore_fb_pub_deps = [eina] +if get_option('tslib') + ecore_fb_deps += dependency('tslib') +endif + ecore_fb_header_src = [ 'Ecore_Fb.h' ] -- 2.7.4