1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00

r3769: fix the build of shared libraries

metze
(This used to be commit 461ff03ce38c6bf6b90f95029287c6e6b01fc1e0)
This commit is contained in:
Stefan Metzmacher 2004-11-15 20:25:40 +00:00 committed by Gerald (Jerry) Carter
parent 548c5e5f31
commit 55d195f30b
2 changed files with 9 additions and 3 deletions

View File

@ -340,6 +340,7 @@ sub _prepare_shared_library_rule($)
my $tmpshflag;
my $tmprules;
my $output;
my $outname = $ctx->{OUTPUT};
$tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
@ -374,11 +375,15 @@ bin/$ctx->{LIBRARY_SONAME}: bin/$ctx->{LIBRARY_REALNAME} bin/.dummy
bin/$ctx->{LIBRARY_NAME}: bin/$ctx->{LIBRARY_SONAME} bin/.dummy
\@echo Symlink \$\@
\@ln -sf $ctx->{LIBRARY_SONAME} \$\@
library_$ctx->{NAME}: basics $ctx->{LIBRARY_SONAME}
";
$outname = $ctx->{LIBRARY_NAME};
}
$output .= "
library_$ctx->{NAME}: basics bin/$outname
# End Library $ctx->{NAME}
###################################
";
}
return $output;
}

View File

@ -26,10 +26,11 @@ sub generate_shared_library($)
@{$lib->{LINK_LIST}} = ("\$($lib->{TYPE}_$lib->{NAME}\_OBJS)");
$lib->{LIBRARY_NAME} = $lib->{NAME}.".so";
$lib->{OUTPUT} = "bin/$lib->{LIBRARY_NAME}";
if ($lib->{MAJOR_VERSION}) {
if (defined($lib->{MAJOR_VERSION})) {
$lib->{LIBRARY_SONAME} = $lib->{LIBRARY_NAME}.".$lib->{MAJOR_VERSION}";
$lib->{LIBRARY_REALNAME} = $lib->{LIBRARY_SONAME}.".$lib->{MINOR_VERSION}.$lib->{RELEASE_VERSION}";
$lib->{OUTPUT} = "bin/$lib->{LIBRARY_REALNAME}";
@{$lib->{LINK_FLAGS}} = ("\@SONAMEFLAG\@$lib->{LIBRARY_SONAME}");
}
}