[PATCH 2/3] meson: Include firewall backend selection in summary

Andrea Bolognani posted 3 patches 3 months, 3 weeks ago
[PATCH 2/3] meson: Include firewall backend selection in summary
Posted by Andrea Bolognani 3 months, 3 weeks ago
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
---
 meson.build | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meson.build b/meson.build
index ed0e9686f8..e98ab0d5ac 100644
--- a/meson.build
+++ b/meson.build
@@ -2382,6 +2382,11 @@ misc_summary = {
   'sysctl config': conf.has('WITH_SYSCTL'),
   'userfaultfd sysctl': conf.has('WITH_USERFAULTFD_SYSCTL'),
 }
+if conf.has('WITH_NETWORK')
+  misc_summary += {
+    'firewall backends': firewall_backend_priority,
+  }
+endif
 summary(misc_summary, section: 'Miscellaneous', bool_yn: true, list_sep: ' ')
 
 devtools_summary = {
-- 
2.45.1
Re: [PATCH 2/3] meson: Include firewall backend selection in summary
Posted by Pavel Hrdina 3 months, 3 weeks ago
On Tue, May 28, 2024 at 05:49:20PM +0200, Andrea Bolognani wrote:
> Signed-off-by: Andrea Bolognani <abologna@redhat.com>
> ---
>  meson.build | 5 +++++
>  1 file changed, 5 insertions(+)

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>