Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv9550/src
Modified Files:
wolfpack.pro
Log Message:
Implemented SQLite support.
driver=sqlite
database name is the filename
Index: wolfpack.pro
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolfpack.pro,v
retrieving revision 1.139
retrieving revision 1.140
diff -C2 -d -r1.139 -r1.140
*** wolfpack.pro 26 Jul 2003 01:10:55 -0000 1.139
--- wolfpack.pro 26 Aug 2003 15:42:07 -0000 1.140
***************
*** 229,241 ****
HEADERS += python/content.h
! # Flatstore Module
! HEADERS += flatstore/exceptions.h \
! flatstore/flatstore.h \
! flatstore/flatstore_keys.h \
! flatstore/version.h
!
! unix:SOURCES += flatstore/exceptions.cpp \
! flatstore/flatstore.cpp \
! flatstore/flatstore_c.cpp
INTERFACES =
--- 229,272 ----
HEADERS += python/content.h
! # SQLite Sources
! SOURCES += sqlite/attach.c \
! sqlite/auth.c \
! sqlite/btree.c \
! sqlite/btree_rb.c \
! sqlite/build.c \
! sqlite/copy.c \
! sqlite/delete.c \
! sqlite/expr.c \
! sqlite/func.c \
! sqlite/hash.c \
! sqlite/insert.c \
! sqlite/main.c \
! sqlite/opcodes.c \
! sqlite/os.c \
! sqlite/pager.c \
! sqlite/parse.c \
! sqlite/pragma.c \
! sqlite/printf.c \
! sqlite/random.c \
! sqlite/select.c \
! sqlite/table.c \
! sqlite/tokenize.c \
! sqlite/trigger.c \
! sqlite/update.c \
! sqlite/util.c \
! sqlite/vacuum.c \
! sqlite/vdbe.c \
! sqlite/where.c
!
! HEADERS += sqlite/btree.h \
! sqlite/config.h \
! sqlite/hash.h \
! sqlite/opcodes.h \
! sqlite/os.h \
! sqlite/pager.h \
! sqlite/parse.h \
! sqlite/sqlite.h \
! sqlite/sqliteInt.h \
! sqlite/vdbe.h
INTERFACES =
|