From 3cac01ea766323369535296490f434cc868527ae Mon Sep 17 00:00:00 2001 From: Andrew Gainer-Dewar Date: Sat, 1 Jun 2024 13:57:24 -0400 Subject: [PATCH] Remove spurious references to `jackaudio` backend not actually implemented in this PR --- src/config.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index 55c9606b..1d14cb9a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -27,7 +27,6 @@ const CONFIG_FILE_NAME: &str = "spotifyd.conf"; feature = "alsa_backend", feature = "rodio_backend", feature = "rodiojack_backend", - feature = "jackaudio_backend", )))] compile_error!("At least one of the backend features is required!"); static BACKEND_VALUES: &[&str] = &[ @@ -41,8 +40,6 @@ static BACKEND_VALUES: &[&str] = &[ "rodio", #[cfg(feature = "rodiojack_backend")] "rodiojack", - #[cfg(feature = "jackaudio_backend")] - "jackaudio", ]; /// The backend used by librespot