devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=e676c989d120c885f9769f24b638b8b5c251b62b

commit e676c989d120c885f9769f24b638b8b5c251b62b
Author: Christopher Michael <cp.mich...@samsung.com>
Date:   Fri Jan 11 09:18:36 2019 -0500

    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 0bcf11e3c8..a2eb5400c6 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'
 ]

-- 


Reply via email to