From 44d4a2a832f461e7c3f3e060dfaae283ff4a48fa Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Thu, 23 Apr 2020 22:05:57 +0200 Subject: [PATCH] meson: fix mistakenly checked-in csound disabling --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index fb8add2d..fb91615e 100644 --- a/meson.build +++ b/meson.build @@ -74,7 +74,7 @@ if not csound_option.disabled() endif endif -if csound_dep.found() and false +if csound_dep.found() plugins_rep += {'gst-plugin-csound' : 'libgstcsound'} else exclude += ['gst-plugin-csound']