From b8f09069064daadc8dcd2ea22fe7860dc4ef07e4 Mon Sep 17 00:00:00 2001 From: arch1t3cht Date: Thu, 30 May 2024 23:12:28 +0200 Subject: [PATCH] bestsource: Don't set any prefer_static argument This should no longer be needed at all --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f63da99869..6505867514 100644 --- a/meson.build +++ b/meson.build @@ -224,7 +224,7 @@ needs_ffmpeg = false if get_option('bestsource').enabled() conf.set('WITH_BESTSOURCE', 1) - bs = subproject('bestsource', default_options: ['prefer_static=' + (get_option('default_library') == 'static').to_string(), 'enable_plugin=false']) + bs = subproject('bestsource', default_options: ['enable_plugin=false']) deps += bs.get_variable('bestsource_dep') dep_avail += 'BestSource' needs_ffmpeg = true