From 8c53e5305d0fb94b9c85844c593fcb005a2a7c93 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Thu, 7 Nov 2019 18:49:14 +0100 Subject: [PATCH] meson: remove spa option PipeWire does not work without at least the basic SPA plugins. Remove the option to disable SPA. Fixes #198 Signed-off-by: Philipp Zabel --- meson.build | 4 +--- meson_options.txt | 4 ---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/meson.build b/meson.build index 744553781..834230404 100644 --- a/meson.build +++ b/meson.build @@ -207,9 +207,7 @@ if get_option('gstreamer') dependency('gstreamer-allocators-1.0'),] endif -if get_option('spa') - subdir('spa') -endif +subdir('spa') subdir('src') diff --git a/meson_options.txt b/meson_options.txt index 0d851a613..5a738ddb5 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -26,10 +26,6 @@ option('pipewire-pulseaudio', description: 'Enable pipewire-pulseaudio integration', type: 'boolean', value: true) -option('spa', - description: 'Enable spa integration', - type: 'boolean', - value: true) option('spa-plugins', description: 'Enable spa plugins integration', type: 'boolean',