1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

Prepare for dev release

This commit is contained in:
Adam Kennedy 2010-01-03 05:45:31 +00:00
parent e91137eb94
commit b790244c4f
2 changed files with 6 additions and 4 deletions

View file

@ -1,11 +1,13 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.28_02 to be released 1.28_02 Sun 3 Jan 2010
- Now empty (or comment only) statements won't cause segv - Now empty (or comment only) statements won't cause segv
or "not an error" errors. Spotted by TOKUHIROM. (ISHIGAKI) or "not an error" errors. Spotted by TOKUHIROM. (ISHIGAKI)
- Resolved #52573: previous fix always turned on the AutoCommit - Resolved #52573: previous fix always turned on the AutoCommit
flag; it goes along with the behavior of the internal library flag; it goes along with the behavior of the internal library
but broke compat. (ISHIGAKI) but broke compat. (ISHIGAKI)
- Removed the SQLITE_CORE and SQLITE_PRT_SZ flags at the recommendation
of the SQLite mailing list. (ADAMK)
1.28_01 Tue 22 Dec 2009 1.28_01 Tue 22 Dec 2009
- Updated to SQLite 3.6.21 (ISHIGAKI) - Updated to SQLite 3.6.21 (ISHIGAKI)

View file

@ -82,7 +82,7 @@ SCOPE: {
my $_cmd = $cmd; my $_cmd = $cmd;
return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd)); return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd));
for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') { for my $dir ( (split /$Config::Config{path_sep}/, $ENV{PATH}), '.' ) {
next if $dir eq ''; next if $dir eq '';
my $abs = File::Spec->catfile($dir, $_[1]); my $abs = File::Spec->catfile($dir, $_[1]);
return $abs if (-x $abs or $abs = MM->maybe_command($abs)); return $abs if (-x $abs or $abs = MM->maybe_command($abs));
@ -95,14 +95,14 @@ SCOPE: {
my @chunks = split(/ /, $Config::Config{cc}) or return; my @chunks = split(/ /, $Config::Config{cc}) or return;
# $Config{cc} may contain args; try to find out the program part # $Config{cc} may contain args; try to find out the program part
while (@chunks) { while ( @chunks ) {
return can_run("@chunks") || (pop(@chunks), next); return can_run("@chunks") || (pop(@chunks), next);
} }
return; return;
} }
unless (can_cc()) { unless ( can_cc() ) {
print "We can't locate a C compiler from your Config.pm.\n"; print "We can't locate a C compiler from your Config.pm.\n";
exit(0); exit(0);
} }