Help for this page
$dynamic_configuration = 'CONF-A'; use $dynamic_configuration;
if ($A) { use CONF-A; ... } elsif ($C) { use CONF-C; }
%conf = (CONF-A => 'foo', etc..., CONF-B => 'bar', etc..., CONF-C => 'baz', etc...);
$x = 'A'; eval "require CONF-$x"; import ????? qw(var1 var2...);