From d9371444c487878e0bc37e89441d025efc0f3567 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Mon, 30 Jan 2023 22:54:35 +0000 Subject: meson: libcamera: Report IPA signature method Use the Configuration section to report which dependency is used to handle IPA module signatures. In the event that it is not found, report directly in the configuration that modules are Isolated. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain Signed-off-by: Kieran Bingham --- src/libcamera/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 9869bfe7..d4385041 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -90,6 +90,10 @@ endif if not libcrypto.found() warning('Neither gnutls nor libcrypto found, all IPA modules will be isolated') + summary({'IPA modules signed with': 'None (modules will run isolated)'}, + section: 'Configuration') +else + summary({'IPA modules signed with': libcrypto.name()}, section: 'Configuration') endif if liblttng.found() -- cgit v1.2.1