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

jelmer at samba.org jelmer at samba.org
Fri Jan 4 15:41:30 GMT 2008


Author: jelmer
Date: 2008-01-04 15:41:29 +0000 (Fri, 04 Jan 2008)
New Revision: 26664

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

Log:
buildsystem: Hopefully fix the shared library build on AIX. 

Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/build/smb_build/output.pm


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:revision-info
...skipped...
Name: bzr:revision-id:v3-trunk0
...skipped...

Modified: branches/SAMBA_4_0/source/build/smb_build/output.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/output.pm	2008-01-04 03:44:41 UTC (rev 26663)
+++ branches/SAMBA_4_0/source/build/smb_build/output.pm	2008-01-04 15:41:29 UTC (rev 26664)
@@ -7,6 +7,7 @@
 
 package output;
 use strict;
+use smb_build::config;
 
 sub add_dir_str($$)
 {
@@ -79,7 +80,7 @@
 
 	$lib->{LIBRARY_DEBUGNAME} = $lib->{LIBRARY_REALNAME};
 
-	if (defined($lib->{VERSION})) {
+	if (defined($lib->{VERSION}) and $config::config{SONAMEFLAG} ne "#") {
 		$lib->{LIBRARY_SONAME} = "$lib->{LIBRARY_REALNAME}.$lib->{SO_VERSION}";
 		$lib->{LIBRARY_REALNAME} = "$lib->{LIBRARY_REALNAME}.$lib->{VERSION}";
 	} 



More information about the samba-cvs mailing list