From f04c5361a5f71cb23cc6afcd68d0a4a1df8ffdb7 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Thu, 18 Feb 2021 10:41:46 +0100 Subject: [PATCH] [Meson] Based on feedback from SardemFF7 set -lm requirement optional. https://mesonbuild.com/howtox.html#add-math-library-lm-portablypdate --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 0fb12ede..67f35a60 100644 --- a/meson.build +++ b/meson.build @@ -41,7 +41,7 @@ plugins_deps = [ dependency('cairo'), ] -dep_lm = c_compiler.find_library('m', required : true) +dep_lm = c_compiler.find_library('m', required : false) deps = [ plugins_deps,