Browse Source

codec: meson: fix missing ogg dependency for speex

pull/177/head
Alexandre Janniaux 1 year ago
committed by Steve Lhomme
parent
commit
a7c5f2e01b
  1. 4
      modules/codec/meson.build

4
modules/codec/meson.build

@ -499,8 +499,8 @@ speex_dep = dependency('speex', version: '>= 1.0.5', required: get_option('speex
vlc_modules += {
'name' : 'speex',
'sources' : files('speex.c'),
'dependencies' : [speex_dep],
'enabled' : speex_dep.found(),
'dependencies' : [speex_dep, ogg_dep],
'enabled' : speex_dep.found() and ogg_dep.found(),
}
# Vorbis codec

Loading…
Cancel
Save