raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6fcc3a56d84901ad077a801567a590451263078d
commit 6fcc3a56d84901ad077a801567a590451263078d Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Dec 20 16:38:16 2018 +0000 meson - vix ecore wl2 pc generation to not include nonexistent wl lib the ecore wl2.pc wanted to -lwayland_protocol ... which is never installed. it's an in-tree .a we stattically link in, so remove it from the pub libs in the pc. rthis was causing things that build against efl to fail (like enlightenment). --- src/lib/ecore_wl2/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_wl2/meson.build b/src/lib/ecore_wl2/meson.build index 9ed393b3bb..96078fc344 100644 --- a/src/lib/ecore_wl2/meson.build +++ b/src/lib/ecore_wl2/meson.build @@ -1,5 +1,5 @@ ecore_wl2_deps = [dependency('wayland-client'), dependency('wayland-server'), dependency('xkbcommon'), wayland_protocol, dependency('wayland-client')] -ecore_wl2_pub_deps = [eina, ecore, wayland_protocol] +ecore_wl2_pub_deps = [eina, ecore] ecore_wl2_header_src = [ 'Ecore_Wl2.h' --
