[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1574-gaa71ab6

Jelmer Vernooij jelmer at samba.org
Tue May 12 22:36:25 GMT 2009


The branch, master has been updated
       via  aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04 (commit)
      from  aa84ca6e6ba66536ca32dc5792d27e2169589a14 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Wed May 13 00:34:57 2009 +0200

    s4 config-summary: Fix printing of which libraries are external and
    internal.

-----------------------------------------------------------------------

Summary of changes:
 source4/build/smb_build/summary.pm |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm
index c791621..153c3e2 100644
--- a/source4/build/smb_build/summary.pm
+++ b/source4/build/smb_build/summary.pm
@@ -36,8 +36,14 @@ sub showitem($$$)
 sub showisexternal($$$)
 {
 	my ($output, $desc, $name) = @_;
-	print "Using external $desc: ".
-	    (($output->{$name}->{TYPE} eq "EXT_LIB")?"yes":"no")."\n";
+	print "Using external $desc: ";
+	if ($output->{$name}->{TYPE} eq "SUBSYSTEM" or
+	    $output->{$name}->{TYPE} eq "LIBRARY") {
+		print "no"; 
+	} else {
+		print "yes";
+	}
+	print "\n";
 }
 
 sub show($$)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list