Thread ExtUtils::Installed findet nicht alle Module?
(37 answers)
Opened by bianca at 2012-10-24 11:39 2012-10-24T09:49:55 renee Achso. Es ist Windows und ich installiere die Module entweder per cpan Eingabeaufforderung oder per perl -MCPAN -e shell Wie ich dieses installiert hatte, weiß ich nicht mehr. Bin jetzt auf einer Vista Kiste und lasse folgendes Script laufen: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/usr/bin/perl use strict; use warnings; use 5.008; use strict; use warnings; use HTTP::Message; use LWP::UserAgent; my $url = 'http://labs.gwendragon.de/'; my $ua = LWP::UserAgent->new; my $can_accept = HTTP::Message::decodable; my $response = $ua->get( $url, 'Accept-Encoding' => $can_accept, ); print $response->{_headers}->as_string; print "\nModultest: '"; eval 'use ExtUtils::Installed; $inst = ExtUtils::Installed->new(); @modules = $inst->modules(extra_libs=>\@{"cgi-bin/lib"}); /(HTTP::Message)/ && print "$1 found" for (@modules)'; print "'\n"; Bringt diese Ausgabe: Quote Module sind also offensichtlich vorhanden, HTTP::Message wird dennoch nicht als vorhanden angezeigt. 10 print "Hallo"
20 goto 10 |