[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha3-115-g2b8cf1b

James Peach jpeach at samba.org
Sun Apr 13 21:11:33 GMT 2008


The branch, v4-0-test has been updated
       via  2b8cf1b2a447711d123c563dfbd9a54941155267 (commit)
      from  9b8448c1e4567be26fa4890c647e0d4d46efbe20 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test


- Log -----------------------------------------------------------------
commit 2b8cf1b2a447711d123c563dfbd9a54941155267
Author: James Peach <jpeach at samba.org>
Date:   Sun Apr 13 14:09:09 2008 -0700

    smb_build: Make sure LIBRARY_SONAME is never uninitialized.

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

Summary of changes:
 source/build/smb_build/makefile.pm |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/build/smb_build/makefile.pm b/source/build/smb_build/makefile.pm
index fb3ac56..2470fa1 100644
--- a/source/build/smb_build/makefile.pm
+++ b/source/build/smb_build/makefile.pm
@@ -220,6 +220,10 @@ sub SharedLibrary($$)
 {
 	my ($self,$ctx) = @_;
 
+	if (!defined($ctx->{LIBRARY_SONAME})) {
+		$ctx->{LIBRARY_SONAME} = "";
+	}
+
 	$self->output("SHARED_LIBS += $ctx->{SHAREDDIR}/$ctx->{LIBRARY_REALNAME}\n") if (defined($ctx->{SO_VERSION}));
 
 	$self->_prepare_list($ctx, "DEPEND_LIST");


-- 
Samba Shared Repository


More information about the samba-cvs mailing list