From a188cfec0e6b55cc182265d6b3dcd1e2487bf5d7 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Tue, 9 Oct 2018 21:20:23 +0200 Subject: [PATCH] build: e_gadget_loader is using dlsym but is not explicitly linking against it. Previously this was not discovered due to a wrong flag in elementaries pkgconfig. However - the new .pc file of elementary does not contain dl anymore (as no library _needs_ to link against it when using elm). So we need to link this here explicitly Differential Revision: https://phab.enlightenment.org/D7150 --- src/bin/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/meson.build b/src/bin/meson.build index a8f0793d5..b4ad50ab2 100644 --- a/src/bin/meson.build +++ b/src/bin/meson.build @@ -578,6 +578,7 @@ if config_h.has('HAVE_WAYLAND') == true name_prefix: '', include_directories: include_directories('../..'), dependencies: [ + dep_dl, dependency('elementary'), dependency('ecore-wl2'), dependency('wayland-client'),