Author: pgollucci
Date: Sat May 20 22:36:08 2006
New Revision: 408136
URL: http://svn.apache.org/viewvc?rev=408136&view=rev
Log:
Add pre of Archive::Tar (only for win32)
Using v1.29 as thats what I have installed.
Reported by: [EMAIL PROTECTED]
Message ID: <[EMAIL PROTECTED]>
Modified:
httpd/apreq/trunk/build/version_check.pl
Modified: httpd/apreq/trunk/build/version_check.pl
URL:
http://svn.apache.org/viewvc/httpd/apreq/trunk/build/version_check.pl?rev=408136&r1=408135&r2=408136&view=diff
==============================================================================
--- httpd/apreq/trunk/build/version_check.pl (original)
+++ httpd/apreq/trunk/build/version_check.pl Sat May 20 22:36:08 2006
@@ -38,6 +38,11 @@
$ExtUtils::MakeMaker::VERSION;
}
+sub ta_version {
+ require Archive::Tar;
+ $Archive::Tar::VERSION;
+}
+
sub mp2_version {
eval {
require mod_perl2;
@@ -74,6 +79,12 @@
"Test::More" => { version => "0.47", test => \&tm_version },
);
+$perl_glue{'Archive::Tar'} = {
+ version => "1.29",
+ test => \&ta_version,
+ comment => 'Win32 only',
+ };
+
my %test = (
"Test::Inline" => { version => "0.16", test => \&ti_version },
);