[wpdev-commits] wolfpack wolfpack.pro,1.166,1.167
Brought to you by:
rip,
thiagocorrea
|
From: <thi...@us...> - 2003-12-18 13:41:57
|
Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv10499
Modified Files:
wolfpack.pro
Log Message:
Updated SQLite
Index: wolfpack.pro
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolfpack.pro,v
retrieving revision 1.166
retrieving revision 1.167
diff -C2 -d -r1.166 -r1.167
*** wolfpack.pro 26 Sep 2003 13:00:34 -0000 1.166
--- wolfpack.pro 18 Dec 2003 13:41:54 -0000 1.167
***************
*** 54,57 ****
--- 54,61 ----
LIBS += -lmysqlclient
}
+ isEmpty(MYSQL_INCLUDE)
+ {
+ message("MySQL include files not found, support is disabled")
+ }
}
# Python includes. Run configure script to initialize it.
***************
*** 60,64 ****
INCLUDEPATH += $$(PYTHONINC)
}
!
INCLUDEPATH += /usr/local/include/stlport lib/Python sqlite lib/Python/Include network
LIBS += -L. -L/usr/local/lib -Llib/Python -ldl -lpython2.3 -lutil
--- 64,71 ----
INCLUDEPATH += $$(PYTHONINC)
}
! isEmpty($(PYTHONINC))
! {
! message("Error: Could not find Python include files")
! }
INCLUDEPATH += /usr/local/include/stlport lib/Python sqlite lib/Python/Include network
LIBS += -L. -L/usr/local/lib -Llib/Python -ldl -lpython2.3 -lutil
***************
*** 264,305 ****
# 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 =
--- 271,315 ----
# SQLite Sources
SOURCES += sqlite/attach.c \
! sqlite/auth.c \
! sqlite/btree.c \
! sqlite/btree_rb.c \
! sqlite/build.c \
! sqlite/copy.c \
! sqlite/date.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/vdbeaux.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 \
! sqlite/vdbeInt.h
INTERFACES =
|