From a62ade362ff6b4fdf949b31d99199e509cb8d643 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 21 Feb 2005 13:13:21 +0000 Subject: 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) --- source4/build/smb_build/input.pm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/build/smb_build') diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index c076202ae4f..c574b5d4a55 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}; } -- cgit