diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-26 18:03:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:45 -0500 |
commit | d8e35f882879e189f55b3bca818dd44cc5f0c6fa (patch) | |
tree | e9a9696ef8406b06cdaa2dee0dfcc2d01d594d76 /source4/build/smb_build | |
parent | 448483199fb436309735f5203b3282fca2c517ec (diff) | |
download | samba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.tar.gz samba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.tar.bz2 samba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.zip |
r12498: Eliminate INIT_OBJ_FILES and ADD_OBJ_FILES. We were not using
the difference between these at all, and in the future the
fact that INIT_OBJ_FILES include smb_build.h will be sufficient to
have recompiles at the right time.
(This used to be commit b24f2583edee38abafa58578d8b5c4b43e517def)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/TODO | 5 | ||||
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 6 |
2 files changed, 1 insertions, 10 deletions
diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO index f98a3d2bb5..0d9b1bab1d 100644 --- a/source4/build/smb_build/TODO +++ b/source4/build/smb_build/TODO @@ -3,12 +3,9 @@ - get rid of include/structs.h - install Samba-specific headers in $INCLUDEDIR/samba-4.0. talloc.h, tdb.h and ldb.h belong in $INCLUDEDIR -- init functions may be called more then once as different libraries - (in Samba or other projects) can use the same (3rd) library. - add register function to smbtorture - init functions per shared library / binary - - add init functions + use lists of function pointers - - rpc_ndr + - rpc_ndr - list not automatically generated - utility function for 'init mutex' - install shared modules diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index 3d55718541..ddc928c8e2 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -21,8 +21,6 @@ my $section_types = { }, "SUBSYSTEM" => { "INIT_FUNCTION" => "string", - "INIT_OBJ_FILES" => "list", - "ADD_OBJ_FILES" => "list", "OBJ_FILES" => "list", "REQUIRED_SUBSYSTEMS" => "list", @@ -36,8 +34,6 @@ my $section_types = { "SUBSYSTEM" => "string", "INIT_FUNCTION" => "string", - "INIT_OBJ_FILES" => "list", - "ADD_OBJ_FILES" => "list", "OBJ_FILES" => "list", "REQUIRED_SUBSYSTEMS" => "list", @@ -64,8 +60,6 @@ my $section_types = { "RELEASE_VERSION" => "string", "INIT_FUNCTION" => "string", - "INIT_OBJ_FILES" => "list", - "ADD_OBJ_FILES" => "list", "OBJ_FILES" => "list", "DESCRIPTION" => "string", |