From bda6c35f2ff595c930c0533569d34b9969ffdb97 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 12 Mar 2006 13:10:26 +0000 Subject: r14237: fix the summary output (step 1) metze (This used to be commit 612fcb46ac21839b9c98b92d3261506dfafb2a93) --- source4/build/smb_build/summary.pm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm index ee1da1cac4..5dcd2e3671 100644 --- a/source4/build/smb_build/summary.pm +++ b/source4/build/smb_build/summary.pm @@ -20,7 +20,7 @@ sub showitem($$$) } print "Support for $desc: "; - if ($#need > 0) { + if ($#need >= 0) { print "no (install " . join(',',@need) . ")\n"; } else { print "yes\n"; @@ -30,13 +30,16 @@ sub showitem($$$) sub show($$) { my ($output,$config) = @_; + print "Summary:\n\n"; showitem($output, "GTK+ frontends", ["gtk","gconf"]); showitem($output, "SSL in SWAT", ["GNUTLS"]); - showitem($output, "threads in smbd", ["PTHREAD"]); + showitem($output, "threads in smbd (see --with-pthread)", ["PTHREAD"]); showitem($output, "intelligent command line editing", ["READLINE"]); - showitem($output, "changing process titles", ["SETPROCTITLE"]); + showitem($output, "changing process titles (see --with-setproctitle)", ["SETPROCTITLE"]); showitem($output, "using extended attributes", ["XATTR"]); + showitem($output, "using libblkid", ["BLKID"]); + showitem($output, "using pam", ["PAM"]); print "Using external popt: $output->{EXT_LIB_POPT}->{ENABLE}\n"; print "Using shared libraries internally (experimental): "; -- cgit