GNOME Bugzilla – Bug 795200
configure: Fix hard-coded enabled v4l2 probe on Linux/ARM
Last modified: 2018-04-26 20:38:47 UTC
Created attachment 370863 [details] [review] proposed patch Currently, enable_v4l2_probe is hard-coded to "yes" on linux, platforms arm and aarch64. This even overrides the --disable-v4l2-probe argument. As a result, it is impossible to disable v4l2_probe. It becomes a problem for use-cases, when startup time is critical, because the v4l2_probe feature increases the initialization time. This commit makes the v4l2_probe feature configurable. On linux, platforms arm and aarch64, the default value is still "yes". But now it can be disabled by the --disable-v4l2-probe argument.
commit ae1c2b0c674fe259b3850782a0c7aec2a7988809 (HEAD -> master, origin/master, origin/HEAD) Author: Kirill Marinushkin <kmarinushkin@de.adit-jv.com> Date: Wed Apr 4 15:50:55 2018 +0200 configure: Fix hard-coded enabled v4l2 probe on Linux/ARM Currently, enable_v4l2_probe is hard-coded to "yes" on linux, platforms arm and aarch64. This even overrides the --disable-v4l2-probe argument. As a result, it is impossible to disable v4l2_probe. It becomes a problem for use-cases, when startup time is critical, because the v4l2_probe feature increases the initialization time. This commit makes the v4l2_probe feature configurable. On linux, platforms arm and aarch64, the default value is still "yes". But now it can be disabled by the --disable-v4l2-probe argument. https://bugzilla.gnome.org/show_bug.cgi?id=795200
commit 4ad37153248b2c14b6d50a2210503040959a88a2 (HEAD -> 1.14) Author: Kirill Marinushkin <kmarinushkin@de.adit-jv.com> Date: Wed Apr 4 15:50:55 2018 +0200 configure: Fix hard-coded enabled v4l2 probe on Linux/ARM Currently, enable_v4l2_probe is hard-coded to "yes" on linux, platforms arm and aarch64. This even overrides the --disable-v4l2-probe argument. As a result, it is impossible to disable v4l2_probe. It becomes a problem for use-cases, when startup time is critical, because the v4l2_probe feature increases the initialization time. This commit makes the v4l2_probe feature configurable. On linux, platforms arm and aarch64, the default value is still "yes". But now it can be disabled by the --disable-v4l2-probe argument. https://bugzilla.gnome.org/show_bug.cgi?id=795200
Thanks !