Help for this page

Select Code to Download


  1. or download this
    use Cwd;
    use File::Basename;
    ...
      unshift(@INC, "$path/lib-perl");
      unshift(@INC, "$path/lib-perl/sun4-solaris-64int");
    }
    
  2. or download this
    use Cwd qw( realpath ); 
    use File::Basename;
    ...
    my $script_dir; BEGIN { $script_dir = dirname(realpath($0)); }
    
    use lib "$script_dir/lib", "$script_dir/lib-perl";
    
  3. or download this
    use File::Basename;
    use Cwd;
    ...
      unshift(@INC, "$path/lib");
      unshift(@INC, "$path/lib-perl");
    }
    
  4. or download this
    defined($ntCapabilities{$type}{'SW_PAR'}).
  5. or download this
    if (Capability::is_capable(...)) {
        ...
    }