[libcamera-devel] [PATCH v2 1/4] libcamera: meson: Use dependency() to find gnutls
Kieran Bingham
kieran.bingham at ideasonboard.com
Tue Aug 9 14:19:50 CEST 2022
Quoting Laurent Pinchart via libcamera-devel (2022-08-09 00:08:30)
> The gnutls library ships a pkgconfig .pc file. Use the standard
> dependency() method to locate it, instead of cc.find_library().
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
Seems reasonable
Reviewed-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
> ---
> src/libcamera/meson.build | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build
> index b57bee7ef6ca..7cc06de4aedc 100644
> --- a/src/libcamera/meson.build
> +++ b/src/libcamera/meson.build
> @@ -65,7 +65,7 @@ subdir('pipeline')
> subdir('proxy')
>
> libdl = cc.find_library('dl')
> -libgnutls = cc.find_library('gnutls', required : true)
> +libgnutls = dependency('gnutls', required : true)
> libudev = dependency('libudev', required : false)
> libyaml = dependency('yaml-0.1', required : false)
>
> --
> Regards,
>
> Laurent Pinchart
>
More information about the libcamera-devel
mailing list