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.
This commit is contained in:
Marcel Hollerbach 2020-09-24 10:28:27 +02:00 committed by Stefan Schmidt
parent a27f06e09c
commit 586357a090
1 changed files with 1 additions and 1 deletions

View File

@ -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],