1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Remove dependency on config.

(This used to be commit 9bdfff0f6f)
This commit is contained in:
Jelmer Vernooij 2008-03-08 18:56:45 +01:00
parent 3f63701614
commit 03f514869d

View File

@ -7,7 +7,6 @@
package output;
use strict;
use smb_build::config;
sub generate_shared_library($)
{
@ -48,7 +47,7 @@ sub generate_shared_library($)
$lib->{LIBRARY_DEBUGNAME} = $lib->{LIBRARY_REALNAME};
if (defined($lib->{VERSION}) and $config::config{SONAMEFLAG} ne "#") {
if (defined($lib->{VERSION})) {
$lib->{LIBRARY_SONAME} = "$lib->{LIBRARY_REALNAME}.\$($lib->{NAME}_SOVERSION)";
$lib->{LIBRARY_REALNAME} = "$lib->{LIBRARY_REALNAME}.\$($lib->{NAME}_VERSION)";
}