mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 14:48:32 -04:00
SQLite 3.6.16.1 doesn't extract into a directory
This commit is contained in:
parent
5a52a78269
commit
558e422e94
1 changed files with 2 additions and 1 deletions
|
@ -204,9 +204,10 @@ sub extract_constants {
|
|||
%constants;
|
||||
}
|
||||
|
||||
my %bad_dist = map {$_ => 1} qw/3.6.16.1/;
|
||||
sub versions {
|
||||
my $res = HTTP::Tiny->new->get("http://sqlite.org/changes.html");
|
||||
reverse grep {$_->as_num >= 3060100} map {s/_/./g; SQLiteUtil::Version->new($_)} $res->{content} =~ /name="version_(3_[\d_]+)"/g;
|
||||
reverse grep {$_->as_num >= 3060100 && $bad_dist{$_->as_num}} map {s/_/./g; SQLiteUtil::Version->new($_)} $res->{content} =~ /name="version_(3_[\d_]+)"/g;
|
||||
}
|
||||
|
||||
sub srcdir {
|
||||
|
|
Loading…
Add table
Reference in a new issue