build: workaround for meson disabler object not working with if not

This commit is contained in:
Simon Ser 2019-10-08 19:33:19 +03:00 committed by Drew DeVault
parent b051bb68c2
commit 9796abcced
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ foreach dep : ['libpng', 'libavutil', 'libavcodec', 'libavformat']
endif
endforeach
if not cc.has_header('libavutil/hwcontext_drm.h', dependencies: libavutil)
# Check if libavutil is found because of https://github.com/mesonbuild/meson/issues/6010
if libavutil.found() and not cc.has_header('libavutil/hwcontext_drm.h', dependencies: libavutil)
libavutil = disabler()
endif