}
sub _unix_os2_ext {
- my($self,$potential_libs, $Verbose) = @_;
+ my($self,$potential_libs, $verbose) = @_;
if ($^O =~ 'os2' and $Config{libs}) {
# Dynamic libraries are not transitive, so we may need including
# the libraries linked against perl.dll again.
$potential_libs .= $Config{libs};
}
return ("", "", "", "") unless $potential_libs;
- print STDOUT "Potential libraries are '$potential_libs':\n" if $Verbose;
+ print STDOUT "Potential libraries are '$potential_libs':\n" if $verbose;
my($so) = $Config{'so'};
my($libs) = $Config{'libs'};
my($ptype) = $1;
unless (-d $thislib){
print STDOUT "$ptype$thislib ignored, directory does not exist\n"
- if $Verbose;
+ if $verbose;
next;
}
unless ($self->file_name_is_absolute($thislib)) {
#
# , the compilation tools expand the environment variables.)
} else {
- print STDOUT "$thislib not found in $thispth\n" if $Verbose;
+ print STDOUT "$thislib not found in $thispth\n" if $verbose;
next;
}
- print STDOUT "'-l$thislib' found at $fullname\n" if $Verbose;
+ print STDOUT "'-l$thislib' found at $fullname\n" if $verbose;
my($fullnamedir) = dirname($fullname);
push @ld_run_path, $fullnamedir unless $ld_run_path_seen{$fullnamedir}++;
$found++;
}
sub _win32_ext {
- my($self, $potential_libs, $Verbose) = @_;
+ my($self, $potential_libs, $verbose) = @_;
# If user did not supply a list, we punt.
# (caller should probably use the list in $Config{libs})
$potential_libs .= " " if $potential_libs;
$potential_libs .= $libs;
}
- print STDOUT "Potential libraries are '$potential_libs':\n" if $Verbose;
+ print STDOUT "Potential libraries are '$potential_libs':\n" if $verbose;
# compute $extralibs from $potential_libs
# Handle possible linker path arguments.
if ($thislib =~ s/^-L// and not -d $thislib) {
print STDOUT "-L$thislib ignored, directory does not exist\n"
- if $Verbose;
+ if $verbose;
next;
}
elsif (-d $thislib) {
my($found_lib)=0;
foreach $thispth (@searchpath, @libpath){
unless (-f ($fullname="$thispth\\$thislib")) {
- print STDOUT "$thislib not found in $thispth\n" if $Verbose;
+ print STDOUT "$thislib not found in $thispth\n" if $verbose;
next;
}
- print STDOUT "'$thislib' found at $fullname\n" if $Verbose;
+ print STDOUT "'$thislib' found at $fullname\n" if $verbose;
$found++;
$found_lib++;
push(@extralibs, $fullname);
if ($ctype) {
eval '$' . $ctype . "{'$cand'}++";
die "Error recording library: $@" if $@;
- print STDOUT "\tFound as $cand (really $ctest), type $ctype\n" if $verbose > 1;
+ print STDOUT "\tFound as $cand (really $test), type $ctype\n" if $verbose > 1;
next LIB;
}
}
C<require ExtUtils::Liblist;>
-C<ExtUtils::Liblist::ext($self, $potential_libs, $Verbose);>
+C<ExtUtils::Liblist::ext($self, $potential_libs, $verbose);>
=head1 DESCRIPTION