From 87ab5adf7e0d9b8192da0561dafec91644dc7673 Mon Sep 17 00:00:00 2001 From: Jonas K Danielsson Date: Fri, 9 Feb 2024 13:38:53 +0100 Subject: [PATCH] meson: srt: make sure srt_dep is defined Without this we will get errors when we try to build with srt disabled. Part-of: --- subprojects/gst-plugins-bad/ext/srt/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-plugins-bad/ext/srt/meson.build b/subprojects/gst-plugins-bad/ext/srt/meson.build index 8d815ffe1a..ce4dee0a58 100644 --- a/subprojects/gst-plugins-bad/ext/srt/meson.build +++ b/subprojects/gst-plugins-bad/ext/srt/meson.build @@ -8,6 +8,7 @@ srt_sources = [ ] srt_option = get_option('srt') if srt_option.disabled() + srt_dep = dependency('', required : false) subdir_done() endif