r14237: fix the summary output (step 1)
authorStefan Metzmacher <metze@samba.org>
Sun, 12 Mar 2006 13:10:26 +0000 (13:10 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:57:05 +0000 (13:57 -0500)
metze

source/build/smb_build/summary.pm

index ee1da1cac42643c36366a70091a1d20a9931b9dc..5dcd2e3671d059972709e1d2bc6bf70d36d74ecb 100644 (file)
@@ -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): ";