From a671625637d8dea79654f4e3042a7fafc0b506ac Mon Sep 17 00:00:00 2001 From: Siva Mahadevan Date: Wed, 11 Mar 2026 20:15:42 -0400 Subject: [PATCH] spa/plugins: revert "Disable alsa plugin on !Linux platforms." This reverts commit 01096bf6695abff4933873b5ca7196a33bdda597. The linux-specific headers are gone, it builds fine now with alsa enabled. --- spa/plugins/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/meson.build b/spa/plugins/meson.build index 42aec7ed3..f774c1036 100644 --- a/spa/plugins/meson.build +++ b/spa/plugins/meson.build @@ -1,4 +1,4 @@ -if alsa_dep.found() and host_machine.system() == 'linux' +if alsa_dep.found() subdir('alsa') endif if get_option('avb').require(host_machine.system() == 'linux', error_message: 'AVB support is only available on Linux').allowed()