From 37c491ceff28110461de7c79bed636e2f52963a2 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Fri, 17 Mar 2017 20:58:28 -0400 Subject: [PATCH] v4l2: Fix meson plugin shared object name It didn't match between AutoMake and Meson, and the Meson name didn't math the plugin name (video4linux2). --- sys/v4l2/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/v4l2/meson.build b/sys/v4l2/meson.build index 199710e9a8..657bed385c 100644 --- a/sys/v4l2/meson.build +++ b/sys/v4l2/meson.build @@ -37,7 +37,7 @@ if cc.has_header('linux/videodev2.h') or cc.has_header('sys/videodev2.h') or cc. libv4l2_deps = [] endif - gstv4l2 = library('gstv4l2', + gstv4l2 = library('gstvideo4linux2', v4l2_sources, c_args : gst_plugins_good_args, include_directories : [configinc, libsinc],