svn commit: samba r14237 - in branches/SAMBA_4_0/source/build/smb_build: .

metze at samba.org metze at samba.org
Sun Mar 12 13:10:26 GMT 2006


Author: metze
Date: 2006-03-12 13:10:26 +0000 (Sun, 12 Mar 2006)
New Revision: 14237

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14237

Log:
fix the summary output (step 1)

metze
Modified:
   branches/SAMBA_4_0/source/build/smb_build/summary.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/summary.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/summary.pm	2006-03-12 11:00:06 UTC (rev 14236)
+++ branches/SAMBA_4_0/source/build/smb_build/summary.pm	2006-03-12 13:10:26 UTC (rev 14237)
@@ -20,7 +20,7 @@
 	}
 
 	print "Support for $desc: ";
-	if ($#need > 0) {
+	if ($#need >= 0) {
 		print "no (install " . join(',', at need) . ")\n";
 	} else {
 		print "yes\n";
@@ -30,13 +30,16 @@
 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): ";
 



More information about the samba-cvs mailing list