bu5hm4n pushed a commit to branch feature/meson. http://git.enlightenment.org/core/efl.git/commit/?id=0b9c0c4ff1ee478902ac1468bbf356d360c3cb01
commit 0b9c0c4ff1ee478902ac1468bbf356d360c3cb01 Author: Marcel Hollerbach <[email protected]> Date: Sat Jan 6 22:56:04 2018 +0000 meson: eina fix iconv dependencies --- src/lib/eina/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build index e195b203d4..92cdd42a93 100644 --- a/src/lib/eina/meson.build +++ b/src/lib/eina/meson.build @@ -351,6 +351,10 @@ endif #for the case that the iconv library is not part of libc but rather libiconv or smth. like that iconv = dependency('iconv', required: false) +if iconv.found() == false + iconv = cc.find_library('iconv', required: false) +endif + execinfo = cc.find_library('execinfo', required: false) eina_lib = shared_library('eina', sources, --
