]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
meson: move build feature options to miscellaneous summary
authorPavel Hrdina <phrdina@redhat.com>
Thu, 8 Oct 2020 12:10:46 +0000 (14:10 +0200)
committerPavel Hrdina <phrdina@redhat.com>
Fri, 9 Oct 2020 11:44:54 +0000 (13:44 +0200)
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
meson.build

index 48933c49e1c48d36e5c8b4b4ff91286eb292c6df..f5b108c050c04532a4c37a818b918cd9e8099c3a 100644 (file)
@@ -2379,8 +2379,6 @@ libs_summary = {
   'curl': curl_dep.found(),
   'devmapper': devmapper_dep.found(),
   'dlopen': dlopen_dep.found(),
-  'firewalld': conf.has('WITH_FIREWALLD'),
-  'firewalld-zone': conf.has('WITH_FIREWALLD_ZONE'),
   'fuse': fuse_dep.found(),
   'glusterfs': glusterfs_dep.found(),
   'libiscsi': libiscsi_dep.found(),
@@ -2394,12 +2392,10 @@ libs_summary = {
   'libutil': libutil_dep.found(),
   'netcf': netcf_dep.found(),
   'NLS': have_gnu_gettext_tools,
-  'nss': conf.has('WITH_NSS'),
   'numactl': numactl_dep.found(),
   'openwsman': openwsman_dep.found(),
   'parallels-sdk': parallels_sdk_dep.found(),
   'pciaccess': pciaccess_dep.found(),
-  'pm_utils': conf.has('WITH_PM_UTILS'),
   'polkit': conf.has('WITH_POLKIT'),
   'rbd': rbd_dep.found(),
   'readline': readline_dep.found(),
@@ -2433,10 +2429,14 @@ misc_summary = {
   'Use -Werror': cc_flags.contains('-Werror'),
   'Warning Flags': supported_cc_flags,
   'DTrace': conf.has('WITH_DTRACE_PROBES'),
+  'firewalld': conf.has('WITH_FIREWALLD'),
+  'firewalld-zone': conf.has('WITH_FIREWALLD_ZONE'),
+  'nss': conf.has('WITH_NSS'),
   'numad': conf.has('WITH_NUMAD'),
   'Init script': init_script,
   'Char device locks': chrdev_lock_files,
   'Loader/NVRAM': loader_res,
+  'pm_utils': conf.has('WITH_PM_UTILS'),
   'virt-login-shell': conf.has('WITH_LOGIN_SHELL'),
   'virt-host-validate': conf.has('WITH_HOST_VALIDATE'),
   'TLS priority': conf.get_unquoted('TLS_PRIORITY'),