aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-09-04 15:37:39 +0000
committerlloyd <[email protected]>2009-09-04 15:37:39 +0000
commitc184cd88ab53a8e2c343be0ab3a8517a964789e7 (patch)
treed6482cb99346e1d14a2181769b59f2b9daad489c /configure.pl
parent53f3baadaaf6e2475f3e98943ea3e835579715df (diff)
Add a new option --no-autoload to configure.py. This will produce a minimal
build (only libstate, utils, plus dependencies), which can be extended with use of --enable-modules. To add new modules to the set of always-loaded, use 'load_on always' in info.txt Also fix a few small build problems that popped up when doing a minimal build. Requested by a user.
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.pl b/configure.pl
index 592eb2bff..6cf43e5e6 100755
--- a/configure.pl
+++ b/configure.pl
@@ -520,6 +520,7 @@ sub scan_modules {
next unless(module_runs_on($config, \%modinfo, $mod, 0));
if($modinfo{'load_on'} eq 'auto' or
+ $modinfo{'load_on'} eq 'always' or
($modinfo{'load_on'} eq 'asm_ok' and $$config{'asm_ok'})) {
my %maybe_load = ();