1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

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

(This used to be commit bdf30f80fb)
This commit is contained in:
Jelmer Vernooij
2008-01-04 15:41:29 -06:00
committed by Stefan Metzmacher
parent e5f8d05f09
commit e15a33151c

View File

@ -7,6 +7,7 @@
package output;
use strict;
use smb_build::config;
sub add_dir_str($$)
{
@ -79,7 +80,7 @@ sub generate_shared_library($)
$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}";
}