1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Preparing to release the next prod version

This commit is contained in:
Adam Kennedy 2009-04-23 10:09:02 +00:00
parent e120f1e6a1
commit 5088ece17b
4 changed files with 13 additions and 11 deletions

View file

@ -1,4 +1,8 @@
Changes for Perl extension DBD-SQLite.
Changes for Perl extension DBD-SQLite
1.25 Thu 23 Apr 2009
- Amalgamation conversion turned out to be quicker than expected.
- Changing to a production release. (ADAMK)
1.24_02 Wed 22 Apr 2009
- Merging various externally-contributed annotations from

View file

@ -284,21 +284,19 @@ sub libscan {
sub test_via_harness {
my ($self, $perl, $tests) = @_;
if ($^O eq 'hpux' and $Config{osvers} <= 10.20) {
return qq{\tPERL_DL_NONLAZY=0 $perl "-MExtUtils::Command::MM" }.
qq{"-e" "test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
}
else {
if ( $^O eq 'hpux' and $Config{osvers} <= 10.20 ) {
return qq{\tPERL_DL_NONLAZY=0 $perl "-MExtUtils::Command::MM" }
. qq{"-e" "test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
} else {
$self->SUPER::test_via_harness($perl, $tests);
}
}
sub test_via_script {
my ($self, $perl, $script) = @_;
if ($^O eq 'hpux' and $Config{osvers} <= 10.20) {
if ( $^O eq 'hpux' and $Config{osvers} <= 10.20 ) {
return qq{\tPERL_DL_NONLAZY=0 $perl "-I\$(INST_LIB)" "-I\$(INST_ARCHLIB)" $script\n};
}
else {
} else {
$self->SUPER::test_via_script($perl, $script);
}
}

View file

@ -8,7 +8,7 @@ use DynaLoader ();
use vars qw($VERSION @ISA);
use vars qw{$err $errstr $drh $sqlite_version};
BEGIN {
$VERSION = '1.24_02';
$VERSION = '1.25';
@ISA = ('DynaLoader');
# Initialize errors

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
$VERSION = '1.24_02';
$VERSION = '1.25';
@ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok };