diff options
author | Alexandre Ratchov <alex@caoua.org> | 2022-09-07 15:23:42 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-09-27 07:32:31 +0200 |
commit | 663df1cc68729adc0468d632fb19f6106ddcdca8 (patch) | |
tree | 8bcb3bdd80a091b8082186fcbdb5b6e29bab8c9f /audio/meson.build | |
parent | f3def4dd42531cb542bb0e004f375b9d89fd5853 (diff) |
audio: Add sndio backend
sndio is the native API used by OpenBSD, although it has been ported to
other *BSD's and Linux (packages for Ubuntu, Debian, Void, Arch, etc.).
Signed-off-by: Brad Smith <brad@comstyle.com>
Signed-off-by: Alexandre Ratchov <alex@caoua.org>
Reviewed-by: Volker RĂ¼melin <vr_qemu@t-online.de>
Tested-by: Volker RĂ¼melin <vr_qemu@t-online.de>
Message-Id: <YxibXrWsrS3XYQM3@vm1.arverb.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio/meson.build')
-rw-r--r-- | audio/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/meson.build b/audio/meson.build index 3abee90860..34aed78342 100644 --- a/audio/meson.build +++ b/audio/meson.build @@ -17,6 +17,7 @@ foreach m : [ ['pa', pulse, files('paaudio.c')], ['sdl', sdl, files('sdlaudio.c')], ['jack', jack, files('jackaudio.c')], + ['sndio', sndio, files('sndioaudio.c')], ['spice', spice, files('spiceaudio.c')] ] if m[1].found() |