From 586357a090bc2de32b77c788afb03bf914fd0e37 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Thu, 24 Sep 2020 10:28:27 +0200 Subject: [PATCH] build: fix dependencies of software engine before the efl-one refactoring ecore_x_deps contained all the dependencies for x11. After that not anymore, however, we should link software_x11 to x11 libs directly, which is again happening after this here. --- src/modules/evas/engines/software_x11/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/software_x11/meson.build b/src/modules/evas/engines/software_x11/meson.build index 6ddaeee37b..ed0a3e4b46 100644 --- a/src/modules/evas/engines/software_x11/meson.build +++ b/src/modules/evas/engines/software_x11/meson.build @@ -26,7 +26,7 @@ config_h.set('BUILD_ENGINE_SOFTWARE_XLIB', '1') #ecore_x_deps carries all the extensions etc. so we dont have to search them twice #it looks weird but is right, gl_deps is needed for evas_x_egl.c -engine_deps += [x11, ecore_x, ecore_x_deps, gl_deps] +engine_deps += [x11, ecore_x, ecore_x_ext_deps, gl_deps] shared_module(mod_full_name, engine_src, include_directories : config_dir + [engine_include_dir],