diff --git a/examples/meson.build b/examples/meson.build index 8a60e1ed..869384c2 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -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