mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
30 lines
542 B
Perl
30 lines
542 B
Perl
package WgetFeature;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use WgetTest;
|
|
|
|
our %skip_messages;
|
|
require 'WgetFeature.cfg';
|
|
|
|
sub import
|
|
{
|
|
my ($class, $feature) = @_;
|
|
|
|
my $output = `$WgetTest::WGETPATH --version`;
|
|
my ($list) = $output =~ /^([\+\-]\S+(?:\s+[\+\-]\S+)+)/m;
|
|
my %have_features = map {
|
|
my $feature = $_;
|
|
$feature =~ s/^.//;
|
|
($feature, /^\+/ ? 1 : 0);
|
|
} split /\s+/, $list;
|
|
|
|
unless ($have_features{$feature}) {
|
|
print $skip_messages{$feature}, "\n";
|
|
exit 2; # skip
|
|
}
|
|
}
|
|
|
|
1;
|