Update of /cvsroot/http-webtest/HTTP-WebTest
In directory usw-pr-cvs1:/tmp/cvs-serv2802
Modified Files:
Makefile.PL INSTALL
Log Message:
Updated requirements
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/Makefile.PL,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Makefile.PL 12 May 2002 14:40:37 -0000 1.6
--- Makefile.PL 6 Jun 2002 18:27:17 -0000 1.7
***************
*** 26,30 ****
'MIME::Base64' => 0,
'Net::SMTP' => 0,
! 'Parse::RecDescent' => 0,
'Pod::Usage' => 0,
'Pod::Man' => 1.14,
--- 26,30 ----
'MIME::Base64' => 0,
'Net::SMTP' => 0,
! 'Text::Balanced' => 0,
'Pod::Usage' => 0,
'Pod::Man' => 1.14,
***************
*** 35,38 ****
--- 35,48 ----
AUTHOR => $AUTHOR,
ABSTRACT => 'Run tests on remote URLs or local web files');
+
+ sub MY::libscan {
+ my $self = shift;
+ my $path = shift;
+
+ # ignore backup files
+ return undef if $path =~ /~/;
+
+ return $self->MY::SUPER::libscan($path);
+ }
sub MY::dist_core {
Index: INSTALL
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/INSTALL,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** INSTALL 15 Feb 2002 10:42:38 -0000 1.2
--- INSTALL 6 Jun 2002 18:27:17 -0000 1.3
***************
*** 8,12 ****
* libwww 5.60 or later
* libnet
! * Parse::RecDescent
* Pod::Usage (is included in Perl 5.6.1 and later)
* Pod::Man 1.14 (is included in Perl 5.6.1 and later)
--- 8,12 ----
* libwww 5.60 or later
* libnet
! * Text::Balanced
* Pod::Usage (is included in Perl 5.6.1 and later)
* Pod::Man 1.14 (is included in Perl 5.6.1 and later)
***************
*** 23,28 ****
make install
! On Win32 systems you should use 'nmake' instead of make'. 'nmake.exe'
! is Windows version of Unix 'make' utility which can be downloaded from
ftp.microsoft.com for free.
--- 23,28 ----
make install
! On Win32 systems you should use 'nmake' instead of make'. 'nmake' is
! Windows version of Unix 'make' utility which can be downloaded from
ftp.microsoft.com for free.
|