mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
meson: fix build with vpx 1.3.x
vpx >= 1.4.0 is optional
This commit is contained in:
parent
eaae016884
commit
2179b9b9d6
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ if vpx_dep.found()
|
|||
message('WARNING: libvpx was built without any encoder or decoder features!')
|
||||
endif
|
||||
|
||||
if dependency('vpx', version : '>=1.4.0').found()
|
||||
if dependency('vpx', version : '>=1.4.0', required : false).found()
|
||||
vpx_args += '-DHAVE_VPX_1_4'
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue