- or download this
use Cwd;
use File::Basename;
...
unshift(@INC, "$path/lib-perl");
unshift(@INC, "$path/lib-perl/sun4-solaris-64int");
}
- 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";
- or download this
use File::Basename;
use Cwd;
...
unshift(@INC, "$path/lib");
unshift(@INC, "$path/lib-perl");
}
- or download this
defined($ntCapabilities{$type}{'SW_PAR'}). - or download this
if (Capability::is_capable(...)) {
...
}