Skip to content
Snippets Groups Projects
Commit 662e9347 authored by Brad Smith's avatar Brad Smith Committed by Steve Lhomme
Browse files

meson: add sndio support

parent f6ebf56c
No related branches found
No related tags found
1 merge request!6830meson: add sndio support
Pipeline #566299 canceled with stage
in 38 minutes and 43 seconds
......@@ -219,6 +219,11 @@ option('oss',
value: 'auto',
description: 'Enable/disable OSS support (default-enabled on BSD)')
option('sndio',
type : 'feature',
value : 'auto',
description : 'Enable/disable sndio support')
option('ogg',
type : 'feature',
value : 'auto',
......@@ -778,7 +783,6 @@ option('nfs',
# TODO: Missing vdpau
# TODO: Missing kva
# TODO: Missing mmal
# TODO: Missing sndio
# TODO: Missing jack
# TODO: Missing opensles
# TODO: Missing kai
......
......@@ -46,6 +46,16 @@ if jack_dep.found()
}
endif
# sndio output
sndio_dep = dependency('sndio', version: '>= 1.8.0', required: get_option('sndio'))
vlc_modules += {
'name' : 'sndio',
'sources' : files('sndio.c'),
'dependencies' : [sndio_dep],
'enabled' : sndio_dep.found(),
}
# AUHAL output module (macOS only)
if have_osx
vlc_modules += {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment