4   unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
 
   5   push    @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
 
   8 use SL::InstallationCheck;
 
  12 foreach my $module (@SL::InstallationCheck::required_modules) {
 
  13   print("Looking for $module->{name}...");
 
  14   if (!SL::InstallationCheck::module_available($module->{"name"})) {
 
  15     print(" NOT found\n" .
 
  16           "  The module '$module->{name}' is not available on your system.\n" .
 
  17           "  Please install it with the CPAN shell, e.g.\n" .
 
  18           "    perl -MCPAN -e \"install $module->{name}\"\n" .
 
  19           "  or download it from this URL and install it manually:\n" .
 
  20           "    $module->{url}\n\n");