diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-12 13:10:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:05 -0500 |
commit | bda6c35f2ff595c930c0533569d34b9969ffdb97 (patch) | |
tree | 8ba3b84a68e1d65b3fa0c30608b8a5ae46b61cf9 /source4/build/smb_build | |
parent | 99dfc7e4d41634742978a7dcc249e698ab5bb71b (diff) | |
download | samba-bda6c35f2ff595c930c0533569d34b9969ffdb97.tar.gz samba-bda6c35f2ff595c930c0533569d34b9969ffdb97.tar.xz samba-bda6c35f2ff595c930c0533569d34b9969ffdb97.zip |
r14237: fix the summary output (step 1)
metze
(This used to be commit 612fcb46ac21839b9c98b92d3261506dfafb2a93)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/summary.pm | 9 |
1 files 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): "; |