From 87bf1ac9cd7386c918acc4f8335b1548c1cfac11 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 10 Sep 2019 12:55:53 +0530 Subject: [PATCH] meson: libm is not a required library Most toolchains do not have libm as a separate library at all. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c3e0af8022..ea0721e7cf 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('gst-examples', 'c', version : '1.17.0.1', license : 'LGPL') cc = meson.get_compiler('c') -m_dep = cc.find_library('m', required : true) +m_dep = cc.find_library('m', required : false) glib_dep = dependency('glib-2.0', version: '>= 2.38', fallback: ['glib', 'libglib_dep'])