mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
Minor changes to we pass version dependency checks
This commit is contained in:
parent
8ddf75e5f0
commit
f0d8426470
4 changed files with 6 additions and 6 deletions
2
Changes
2
Changes
|
@ -49,7 +49,7 @@ Revision history for Perl extension DBD-SQLite.
|
||||||
- Added TODO to show which issues are to be fixed. (ISHIGAKI)
|
- Added TODO to show which issues are to be fixed. (ISHIGAKI)
|
||||||
- License and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
|
- License and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
|
||||||
- Spelling check for SQLite.pm (Alexandr Ciornii)
|
- Spelling check for SQLite.pm (Alexandr Ciornii)
|
||||||
- Adding arbitrary Perl 5.005 minimum
|
- Adding arbitrary Perl 5.00503 minimum
|
||||||
|
|
||||||
1.16 abandoned
|
1.16 abandoned
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use 5.005;
|
use 5.00503;
|
||||||
use strict;
|
use strict;
|
||||||
use ExtUtils::MakeMaker;
|
use ExtUtils::MakeMaker;
|
||||||
use Config;
|
use Config;
|
||||||
|
@ -198,10 +198,10 @@ WriteMakefile(
|
||||||
'Test::More' => '0.42',
|
'Test::More' => '0.42',
|
||||||
},
|
},
|
||||||
OPTIONAL( '6.48',
|
OPTIONAL( '6.48',
|
||||||
MIN_PERL_VERSION => '5.005',
|
MIN_PERL_VERSION => '5.00503',
|
||||||
),
|
),
|
||||||
OPTIONAL( '6.31',
|
OPTIONAL( '6.31',
|
||||||
LICENSE => 'perl',
|
LICENSE => 'perl',
|
||||||
),
|
),
|
||||||
OPTIONAL( '6.46',
|
OPTIONAL( '6.46',
|
||||||
META_MERGE => {
|
META_MERGE => {
|
||||||
|
|
|
@ -11,7 +11,7 @@ BEGIN {
|
||||||
|
|
||||||
use Test::More tests => 4;
|
use Test::More tests => 4;
|
||||||
|
|
||||||
ok( $] >= 5.005, 'Perl version is new enough' );
|
ok( $] >= 5.00503, 'Perl version is new enough' );
|
||||||
|
|
||||||
use_ok('DBI');
|
use_ok('DBI');
|
||||||
use_ok('DBD::SQLite');
|
use_ok('DBD::SQLite');
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
|
|
||||||
use 5.005_03;
|
use 5.00503;
|
||||||
use strict;
|
use strict;
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$| = 1;
|
$| = 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue