From 4bd0a5b180e311e32b9963c1a10f27483f8c03f1 Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Thu, 8 Oct 2020 14:05:45 +0200 Subject: [PATCH] meson: remove required libraries from summary These are always enabled so it doesn't make any sense to have the result in summary as meson will fail if they are missing. Signed-off-by: Pavel Hrdina Reviewed-by: Andrea Bolognani --- meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/meson.build b/meson.build index 90e2a4fca6..48933c49e1 100644 --- a/meson.build +++ b/meson.build @@ -2382,9 +2382,7 @@ libs_summary = { 'firewalld': conf.has('WITH_FIREWALLD'), 'firewalld-zone': conf.has('WITH_FIREWALLD_ZONE'), 'fuse': fuse_dep.found(), - 'glib_dep': glib_dep.found(), 'glusterfs': glusterfs_dep.found(), - 'gnutls': gnutls_dep.found(), 'libiscsi': libiscsi_dep.found(), 'libkvm': libkvm_dep.found(), 'libm': libm_dep.found(), @@ -2394,7 +2392,6 @@ libs_summary = { 'libssh': libssh_dep.found(), 'libssh2': libssh2_dep.found(), 'libutil': libutil_dep.found(), - 'libxml': libxml_dep.found(), 'netcf': netcf_dep.found(), 'NLS': have_gnu_gettext_tools, 'nss': conf.has('WITH_NSS'),