mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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!')
|
message('WARNING: libvpx was built without any encoder or decoder features!')
|
||||||
endif
|
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'
|
vpx_args += '-DHAVE_VPX_1_4'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue