diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-15 00:32:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:50 -0500 |
commit | 34ddb33b4bf14587f4cd5d7972095df6ffa33e02 (patch) | |
tree | 9d36dabb726ad35b68560645a31b7db3acd2a950 /source4/build/smb_build/smb_build_h.pm | |
parent | c66dbe0c3e57eabacd28658891e356b724fd3fba (diff) | |
download | samba-34ddb33b4bf14587f4cd5d7972095df6ffa33e02.tar.gz samba-34ddb33b4bf14587f4cd5d7972095df6ffa33e02.tar.bz2 samba-34ddb33b4bf14587f4cd5d7972095df6ffa33e02.zip |
r3744: Support building subsystems as a shared library. Modules don't work yet,
so while this does compile, it does not work yet.
(This used to be commit 3d885562c9f83d60c5d4957b067e35387dfa50dd)
Diffstat (limited to 'source4/build/smb_build/smb_build_h.pm')
-rw-r--r-- | source4/build/smb_build/smb_build_h.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/smb_build/smb_build_h.pm b/source4/build/smb_build/smb_build_h.pm index 6d67eedf60..f3b0a2b837 100644 --- a/source4/build/smb_build/smb_build_h.pm +++ b/source4/build/smb_build/smb_build_h.pm @@ -64,7 +64,8 @@ sub _prepare_smb_build_h($) next if $key->{OUTPUT_TYPE} ne "SHARED_LIBRARY"; my $name = $key->{NAME}; - my $func = $key->{INIT_FUNCTION}; + next if not defined($key->{INIT_FUNCTION}); + my $func = join(' ', @{$key->{INIT_FUNCTION}}); next if $func eq ""; my $DEFINE = (); |