summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/header.pm
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-09 14:39:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:54:02 -0500
commit6500444a2d74c7d921e7300939f459a83b95ea14 (patch)
tree28867a5bdc55e7bc4877b604c2103c77e9397184 /source4/build/smb_build/header.pm
parent5ead79baffdf33465d0b650ebb17af009d2af757 (diff)
downloadsamba-6500444a2d74c7d921e7300939f459a83b95ea14.tar.gz
samba-6500444a2d74c7d921e7300939f459a83b95ea14.tar.bz2
samba-6500444a2d74c7d921e7300939f459a83b95ea14.zip
r14072: - only add the 'lib' prefix to libraries not modules
- fix installation of plugins (and make it a bit more verbose - get rid of the '#define libfoo_module_init init_module' and genereated a wrapper function in bin/libfoo_module_init_module.c - change the standard visibility for modules to hidden - a few make clean fixes metze (This used to be commit 89b5667ab0f761e679fdee0f5c3d94942e67e28e)
Diffstat (limited to 'source4/build/smb_build/header.pm')
-rw-r--r--source4/build/smb_build/header.pm20
1 files changed, 0 insertions, 20 deletions
diff --git a/source4/build/smb_build/header.pm b/source4/build/smb_build/header.pm
index 1cc5361b65..a34bcb9025 100644
--- a/source4/build/smb_build/header.pm
+++ b/source4/build/smb_build/header.pm
@@ -48,26 +48,6 @@ sub _prepare_build_h($)
}
#
- # Shared modules
- #
- foreach my $key (values %{$depend}) {
- next if $key->{TYPE} ne "MODULE";
- next if $key->{ENABLE} ne "YES";
- next if $key->{OUTPUT_TYPE} ne "SHARED_LIBRARY";
-
- my $name = $key->{NAME};
- next if not defined($key->{INIT_FUNCTION});
-
- my $DEFINE = ();
-
- $DEFINE->{COMMENT} = "$name is built shared";
- $DEFINE->{KEY} = $key->{INIT_FUNCTION};
- $DEFINE->{VAL} = "init_module";
-
- push(@defines,$DEFINE);
- }
-
- #
# loop over all BUILD_H define sections
#
foreach (@defines) { $output .= _add_define_section($_); }