diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-03-16 07:01:59 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-03-16 07:01:59 +0800 |
commit | 26edcf2f039e5aca689ad231381df7b66ae43d89 (patch) | |
tree | 3039527a2be255ed3bab84123a92e997445fb4e0 /indra | |
parent | eea2a8ff6e181e9093c5fffd9305fc3edaf62fac (diff) |
Exempt Arch from PipeWire too
since they upgraded to 1.4.1 from stable 1.2.7 and there seem to be API
changes and we're not ready for them yet.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/media_plugins/cef/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/media_plugins/cef/CMakeLists.txt b/indra/media_plugins/cef/CMakeLists.txt index 7590ff08a5..3fa029f260 100644 --- a/indra/media_plugins/cef/CMakeLists.txt +++ b/indra/media_plugins/cef/CMakeLists.txt @@ -49,7 +49,7 @@ if (LINUX) linux/volume_catcher_pipewire.cpp ) - if (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) + if (${LINUX_DISTRO} MATCHES arch OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed)) message( "Building with Linux volume catcher for PulseAudio only and cancelling PipeWire" ) list(REMOVE_ITEM LINUX_VOLUME_CATCHER linux/volume_catcher_pipewire.cpp) endif () @@ -76,7 +76,7 @@ add_library(media_plugin_cef ${media_plugin_cef_SOURCE_FILES} ) -if (NOT (${LINUX_DISTRO} MATCHES opensuse-tumbleweed)) +if (NOT (${LINUX_DISTRO} MATCHES arch OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed))) target_compile_definitions(media_plugin_cef PRIVATE USE_VOLUME_CATCHER_PW=1) endif () |