From e77634941da809b0e7d21b0e93fac4dc7a5ec256 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 7 Jan 2020 16:15:47 +0000 Subject: [PATCH] Drop alsa-sys dependency on OpenBSD Unlike other BSDs it never packaged ALSA and prefers everything to use sndio. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index aa1fe22..a6adb03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ ringbuf = "0.1.6" winapi = { version = "0.3", features = ["audiosessiontypes", "audioclient", "coml2api", "combaseapi", "debug", "devpkey", "handleapi", "ksmedia", "mmdeviceapi", "objbase", "std", "synchapi", "winbase", "winuser"] } asio-sys = { version = "0.1", path = "asio-sys", optional = true } -[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))'.dependencies] +[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))'.dependencies] alsa-sys = { version = "0.1", path = "alsa-sys" } libc = "0.2"