From 7ec3bfedbe22962600b438a13d9e13d37d55ce25 Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Thu, 23 Jun 2022 14:10:38 +0200 Subject: meson: options: Disable pycamera by default The libcamera Python bindings is still experimental and it relies on some features in pybind11 that are not yet upstreamed, so a special branch has to be downloaded as a subproject. This conflicts with the build process used by most Linux distributions, since there is expected that all the dependencies will be fulfilled by -devel packages present in the build root. To allow libcamera to be built by distros, let's disable the pycamera by default. This can still be enabled with `meson build -Dpycamera=enabled`. Suggested-by: Tomi Valkeinen Signed-off-by: Javier Martinez Canillas Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Tomi Valkeinen Signed-off-by: Laurent Pinchart --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index ca00c78e..7a9aecfc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -61,5 +61,5 @@ option('v4l2', option('pycamera', type : 'feature', - value : 'auto', + value : 'disabled', description : 'Enable libcamera Python bindings (experimental)') -- cgit v1.2.1