From 12607d67b1e05e1770aadbf1199aabd280b7584f Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Fri, 6 Jun 2025 16:24:19 +0200 Subject: [PATCH] meson: fix building -bad tests with disabled soundtouch Fixes an error from Meson: ../subprojects/gst-plugins-bad/tests/validate/meson.build:16:93: ERROR: Unknown variable "soundtouch_dep" Part-of: --- subprojects/gst-plugins-bad/ext/soundtouch/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-plugins-bad/ext/soundtouch/meson.build b/subprojects/gst-plugins-bad/ext/soundtouch/meson.build index 8ea3f26576..2b6b982c80 100644 --- a/subprojects/gst-plugins-bad/ext/soundtouch/meson.build +++ b/subprojects/gst-plugins-bad/ext/soundtouch/meson.build @@ -20,6 +20,7 @@ plugin_sources += { soundtouch_cargs = ['-DHAVE_SOUNDTOUCH'] if get_option('soundtouch').disabled() + soundtouch_dep = dependency('', required: false) subdir_done() endif