This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: meson: Fix building with -Dv4l-utils=false Author: James Le Cuirot <[email protected]> Date: Tue Dec 12 15:24:05 2023 +0000 ir_bpf_enabled was referenced without being defined. Tested-by: Peter Seiderer <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> meson.build | 2 ++ 1 file changed, 2 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=fee976dcfe3be03cc72c099f9ed3bac938a34b58 diff --git a/meson.build b/meson.build index 3529f6d2f91a..0f35173bb36a 100644 --- a/meson.build +++ b/meson.build @@ -383,6 +383,8 @@ subdir('lib') if get_option('v4l-utils') subdir('utils') subdir('contrib') +else + ir_bpf_enabled = false endif subdir('doc') _______________________________________________ linuxtv-commits mailing list -- [email protected] To unsubscribe send an email to [email protected] %(web_page_url)slistinfo/%(_internal_name)s
