From b5abaabeae20379d8043d55a5dd9d4328a439889 Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Wed, 3 May 2017 21:13:38 +0800 Subject: [PATCH] meson: hls: libm is required because m3u8.c uses math.h https://bugzilla.gnome.org/show_bug.cgi?id=782119 --- ext/hls/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/hls/meson.build b/ext/hls/meson.build index f3ea432c00..64a5520e27 100644 --- a/ext/hls/meson.build +++ b/ext/hls/meson.build @@ -33,7 +33,7 @@ if hls_crypto_dep.found() include_directories : [configinc], dependencies : [gstpbutils_dep, gsttag_dep, gstvideo_dep, gstadaptivedemux_dep, gsturidownloader_dep, - hls_crypto_dep], + hls_crypto_dep, libm], install : true, install_dir : plugins_install_dir, )