[libcamera-devel] [PATCH v2 1/4] libcamera: meson: Use dependency() to find gnutls

Eric Curtin ecurtin at redhat.com
Tue Aug 9 12:42:16 CEST 2022


On Tue, 9 Aug 2022 at 00:08, Laurent Pinchart
<laurent.pinchart at ideasonboard.com> wrote:
>
> 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>

LGTM.

Reviewed-by: Eric Curtin <ecurtin at redhat.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