mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Fix build when we have tinyalsa but not its header
This commit is contained in:
parent
fa3ae13250
commit
f49da047dc
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ if get_option('tinyalsa').disabled()
|
|||
endif
|
||||
|
||||
have_tinyalsa = cc.has_header ('tinyalsa/asoundlib.h')
|
||||
if not have_tinyalsa
|
||||
if have_tinyalsa
|
||||
tinyalsa_dep = cc.find_library('tinyalsa', required: false)
|
||||
have_tinyalsa = tinyalsa_dep.found()
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue