diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-12-22 21:03:09 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-12-22 21:03:09 +0100 |
commit | c023828962d7050668c38129170121cc50cd300f (patch) | |
tree | 02e9eda98a5418cc4555c5b24ca8a1612a706c18 /source4/build/smb_build | |
parent | b682b0feb0af40656cd1b71a859cb1f23edcbcf5 (diff) | |
download | samba-c023828962d7050668c38129170121cc50cd300f.tar.gz samba-c023828962d7050668c38129170121cc50cd300f.tar.bz2 samba-c023828962d7050668c38129170121cc50cd300f.zip |
Fix missing symbols issues when building with shared libraries.
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index d9cbca0614..a80d10733b 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -128,7 +128,7 @@ sub SharedModule($$) $self->_prepare_list($ctx, "LINK_FLAGS"); if (defined($ctx->{INIT_FUNCTION}) and $ctx->{INIT_FUNCTION_TYPE} =~ /\(\*\)/ and not ($ctx->{INIT_FUNCTION} =~ /\(/)) { - $self->output("\$($ctx->{NAME}_OBJ_FILES): CFLAGS+=-D$ctx->{INIT_FUNCTION}=init_module\n"); + $self->output("\$($ctx->{NAME}_OBJ_FILES): CFLAGS+=-D$ctx->{INIT_FUNCTION}=samba_init_module\n"); } $self->output("\$(eval \$(call shared_module_template,$ctx->{SHAREDDIR}/$ctx->{LIBRARY_REALNAME}, \$($ctx->{NAME}_DEPEND_LIST) \$($ctx->{NAME}_FULL_OBJ_LIST), \$($ctx->{NAME}\_FULL_OBJ_LIST) \$($ctx->{NAME}_LINK_FLAGS)))\n"); |