From 1358dc6beba43365572122d5c89347c2491d2b13 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Sat, 24 Mar 2018 13:08:57 +0100 Subject: build: Fix libm detection find_library expects the library name without the 'lib' prefix, otherwise it will be looking for "liblibm" --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index cd3006932..41782c261 100644 --- a/meson.build +++ b/meson.build @@ -67,7 +67,7 @@ libgd = subproject( ) libgd_dep = libgd.get_variable('libgd_dep') -libm = cc.find_library('libm') +libm = cc.find_library('m') gail = dependency('gail-3.0') if get_option('extensions') -- cgit v1.2.1