| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- Index: MANIFEST
- --- MANIFEST.orig 2004-09-13 09:15:30 +0200
- +++ MANIFEST 2004-09-24 10:45:38 +0200
- @@ -1,51 +1,14 @@
- -attach.c
- -auth.c
- -btree.c
- -btree.h
- -build.c
- Changes
- -date.c
- dbdimp.c
- dbdimp.h
- -delete.c
- -expr.c
- -func.c
- -getsqlite.pl
- -hash.c
- -hash.h
- -insert.c
- -legacy.c
- lib/DBD/SQLite.pm
- -main.c
- Makefile.PL
- MANIFEST
- MANIFEST.SKIP
- META.yml Module meta-data (added by MakeMaker)
- -opcodes.c
- -opcodes.h
- -os.h
- -os_common.h
- -os_mac.c
- -os_mac.h
- -os_test.c
- -os_test.h
- -os_unix.c
- -os_unix.h
- -os_win.c
- -os_win.h
- -pager.c
- -pager.h
- -parse.c
- -parse.h
- ppport.h
- -pragma.c
- -printf.c
- -random.c
- README
- -select.c
- SQLite.xs
- -sqlite3.h
- -sqliteInt.h
- SQLiteXS.h
- t/00basic.t
- t/01logon.t
- @@ -73,17 +36,3 @@
- t/dbdadmin.t
- t/lib.pl
- t/SQLite.dbtest
- -table.c
- -tokenize.c
- -trigger.c
- -update.c
- -utf.c
- -util.c
- -vacuum.c
- -vdbe.c
- -vdbe.h
- -vdbeapi.c
- -vdbeaux.c
- -vdbeInt.h
- -vdbemem.c
- -where.c
- Index: Makefile.PL
- --- Makefile.PL.orig 2004-09-20 11:41:39 +0200
- +++ Makefile.PL 2004-09-24 10:44:37 +0200
- @@ -7,34 +7,6 @@
- use ExtUtils::MakeMaker;
- use Config;
- use strict;
- -eval {
- - require DBD::SQLite;
- - if ($DBD::SQLite::VERSION < 1.0) {
- - print <<EOT;
- -
- -**** WARNING **** WARNING **** WARNING **** WARNING **** WARNING ****
- -
- -Your version of DBD::SQLite currently installed ($DBD::SQLite::VERSION) uses
- -the old sqlite database format. This version of DBD::SQLite will *NOT*
- -open these files, and installing this module may cause problems on your
- -system. If this is a live environment you should upgrade with caution.
- -
- -To upgrade a database, download and install both sqlite 2.x and 3.x from
- -http://www.sqlite.org/ and issue:
- -
- - sqlite OLD.DB .dump | sqlite3 NEW.DB
- -
- -DBD::SQLite will NOT automatically upgrade a database for you, and using
- -this version against an old SQLite database WILL lead to database
- -corruption.
- -
- -EOT
- - if (prompt("Continue?", "N") !~ /^y/i) {
- - print "Exiting\n";
- - exit -1;
- - }
- - }
- -};
-
- my $nlid = $DBI::VERSION > 1.42 ? '' : '-Dno_last_insert_id';
-
- @@ -43,8 +15,9 @@
- 'VERSION_FROM' => 'lib/DBD/SQLite.pm', # finds $VERSION
- 'PREREQ_PM' => {DBI => 1.21}, # e.g., Module::Name => 1.1
- 'OBJECT' => '$(O_FILES)',
- - 'INC' => '-I$(DBI_INSTARCH_DIR)',
- 'OPTIMIZE' => "-O2",
- + 'INC' => '-I@l_prefix@/include -I$(DBI_INSTARCH_DIR)',
- + 'LIBS' => ['-L@l_prefix@/lib -lsqlite3'],
- 'DEFINE' => "-DNDEBUG=1 -DSQLITE_PTR_SZ=$Config{ptrsize}" .
- ($Config{d_usleep} ? " -DHAVE_USLEEP=1" : "") .
- ($DBI::VERSION > 1.42 ? '' : ' -Dno_last_insert_id'),
- Index: dbdimp.h
- --- dbdimp.h.orig 2004-09-10 17:24:28 +0200
- +++ dbdimp.h 2004-09-24 10:44:37 +0200
- @@ -4,7 +4,7 @@
- #define _DBDIMP_H 1
-
- #include "SQLiteXS.h"
- -#include "sqliteInt.h"
- +#include "sqlite3.h"
-
- /* 30 second timeout by default */
- #define SQL_TIMEOUT 30000
|