1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 22:58:17 -04:00

getsqlite.pl is broken for 3.7.5+; make it say so

This commit is contained in:
Darren Duncan 2011-05-19 17:13:17 +00:00
parent c535801484
commit 564dd98d1a
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,9 @@ Changes for Perl extension DBD-SQLite
1.33 to be released 1.33 to be released
- Updated to SQLite 3.7.6.3 (ISHIGAKI) - Updated to SQLite 3.7.6.3 (ISHIGAKI)
- Made util/getsqlite.pl state that it needs fixing to work for
SQLite 3.7.5+ when it dies at the last step, and outline what the
user needs to do manually instead, until getsqlite is fixed (DUNCAND)
1.32_03 Thu 12 May 2011 1.32_03 Thu 12 May 2011
- Updated to SQLite 3.7.6.2 (ISHIGAKI) - Updated to SQLite 3.7.6.2 (ISHIGAKI)

View file

@ -43,7 +43,11 @@ print("done\n");
rm_rf('sqlite') || rm_rf("sqlite-$version_dotty") || rm_rf("sqlite-amalgamation-$version_dotty"); rm_rf('sqlite') || rm_rf("sqlite-$version_dotty") || rm_rf("sqlite-amalgamation-$version_dotty");
xsystem("tar zxvf sqlite.tar.gz"); xsystem("tar zxvf sqlite.tar.gz");
chdir("sqlite") || chdir("sqlite-$version_dotty") || chdir("sqlite-amalgamation-$version_dotty") || chdir("sqlite-autoconf-$version") || die "SQLite directory not found"; chdir("sqlite") || chdir("sqlite-$version_dotty") || chdir("sqlite-amalgamation-$version_dotty") || chdir("sqlite-autoconf-$version")
|| die "SQLite directory not found. getsqlite.pl needs fixing to work for SQLite 3.7.5+,"
. " but meanwhile have a look at its source after line 48 and copy the primary files"
. " from the unpacked tarball over their counterparts in the root DBD::SQLite"
. " dir before you 'make': sqlite3.c, sqlite3.h, sqlite3ext.h, fts3_tokenizer.h";