diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-02-21 13:13:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:10:50 -0500 |
commit | a62ade362ff6b4fdf949b31d99199e509cb8d643 (patch) | |
tree | 7175a3e2f6e79bd51e4e68d8aa2026bf357a7be8 /source4/build/smb_build | |
parent | 600c49e772bea70682dc6ef9f6f961c94faed457 (diff) | |
download | samba-a62ade362ff6b4fdf949b31d99199e509cb8d643.tar.gz samba-a62ade362ff6b4fdf949b31d99199e509cb8d643.tar.bz2 samba-a62ade362ff6b4fdf949b31d99199e509cb8d643.zip |
r5487: - Allow disabling modules
- Disable all current DCOM functionality (I hope to commit
a large bunch of COM and DCOM changes later today)
- Make remact and oxidresolver depend on orpc rather then dcom
(This used to be commit f298f2a5478a905fe385b8d68318db92ee984374)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/input.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index c076202ae4..c574b5d4a5 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -77,6 +77,11 @@ sub check_module($$) return; } + if ($mod->{ENABLE} ne "YES") + { + $mod->{CHOSEN_BUILD} = "NOT"; + } + if (not defined($mod->{CHOSEN_BUILD}) or $mod->{CHOSEN_BUILD} eq "DEFAULT") { $mod->{CHOSEN_BUILD} = $mod->{DEFAULT_BUILD}; } |