From 011cf19f3fb26cc38fc9ed10cdda6d18528a209b Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Wed, 27 May 2020 18:21:37 +0200 Subject: [PATCH] build: make eina drag in the -lm flag eina uses math.h we need to drag in this flag everywhere. Differential Revision: https://phab.enlightenment.org/D11896 --- src/lib/eina/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build index 0a25cb8..dcdd44d 100644 --- a/src/lib/eina/meson.build +++ b/src/lib/eina/meson.build @@ -1,6 +1,6 @@ eina_deps = [dl] eina_deps += tracing_deps -eina_pub_deps = [thread_dep] +eina_pub_deps = [thread_dep, m] eina_pc_deps = [m, rt, dl, thread_dep] #special case, this array is taken to drag in external deps to efl-one eina_ext_deps = eina_pc_deps -- 2.7.4