Include the sqlite3session.h header file in with sqlite3.h. Make sure
the session APIs are all public. FossilOrigin-Name: ec490336bc6629d3910667ece1bbc4685a199546
This commit is contained in:
parent
c03edc0b62
commit
e191e2c6d0
@ -528,6 +528,8 @@ sqlite3$(TEXE): $(TOP)/src/shell.c libsqlite3.la sqlite3.h
|
|||||||
|
|
||||||
sqlite3.c: .target_source $(TOP)/tool/mksqlite3c.tcl
|
sqlite3.c: .target_source $(TOP)/tool/mksqlite3c.tcl
|
||||||
$(TCLSH_CMD) $(TOP)/tool/mksqlite3c.tcl
|
$(TCLSH_CMD) $(TOP)/tool/mksqlite3c.tcl
|
||||||
|
cp tsrc/shell.c tsrc/sqlite3ext.h .
|
||||||
|
cp $(TOP)/ext/session/sqlite3session.h .
|
||||||
|
|
||||||
tclsqlite3.c: sqlite3.c
|
tclsqlite3.c: sqlite3.c
|
||||||
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
|
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
|
||||||
@ -890,7 +892,8 @@ TESTFIXTURE_FLAGS += -DBUILD_sqlite
|
|||||||
|
|
||||||
TESTFIXTURE_SRC0 = $(TESTSRC2) libsqlite3.la
|
TESTFIXTURE_SRC0 = $(TESTSRC2) libsqlite3.la
|
||||||
TESTFIXTURE_SRC1 = sqlite3.c
|
TESTFIXTURE_SRC1 = sqlite3.c
|
||||||
TESTFIXTURE_SRC = $(TESTSRC) $(TOP)/src/tclsqlite.c $(TESTFIXTURE_SRC$(USE_AMALGAMATION))
|
TESTFIXTURE_SRC = $(TESTSRC) $(TOP)/src/tclsqlite.c
|
||||||
|
TESTFIXTURE_SRC += $(TESTFIXTURE_SRC$(USE_AMALGAMATION))
|
||||||
|
|
||||||
testfixture$(TEXE): $(TESTFIXTURE_SRC)
|
testfixture$(TEXE): $(TESTFIXTURE_SRC)
|
||||||
$(LTLINK) -DSQLITE_NO_SYNC=1 $(TEMP_STORE) $(TESTFIXTURE_FLAGS) \
|
$(LTLINK) -DSQLITE_NO_SYNC=1 $(TEMP_STORE) $(TESTFIXTURE_FLAGS) \
|
||||||
|
@ -849,6 +849,9 @@ sqlite3.exe: $(TOP)\src\shell.c libsqlite3.lib $(LIBRESOBJS) sqlite3.h
|
|||||||
|
|
||||||
sqlite3.c: .target_source $(TOP)\tool\mksqlite3c.tcl
|
sqlite3.c: .target_source $(TOP)\tool\mksqlite3c.tcl
|
||||||
$(TCLSH_CMD) $(TOP)\tool\mksqlite3c.tcl
|
$(TCLSH_CMD) $(TOP)\tool\mksqlite3c.tcl
|
||||||
|
copy tsrc\shell.c .
|
||||||
|
copy tsrc\sqlite3ext.h .
|
||||||
|
copy $(TOP)\ext\session\sqlite3session.h .
|
||||||
|
|
||||||
sqlite3-all.c: sqlite3.c $(TOP)\tool\split-sqlite3c.tcl
|
sqlite3-all.c: sqlite3.c $(TOP)\tool\split-sqlite3c.tcl
|
||||||
$(TCLSH_CMD) $(TOP)\tool\split-sqlite3c.tcl
|
$(TCLSH_CMD) $(TOP)\tool\split-sqlite3c.tcl
|
||||||
|
6
main.mk
6
main.mk
@ -391,6 +391,8 @@ target_source: $(SRC) $(TOP)/tool/vdbe-compress.tcl
|
|||||||
|
|
||||||
sqlite3.c: target_source $(TOP)/tool/mksqlite3c.tcl
|
sqlite3.c: target_source $(TOP)/tool/mksqlite3c.tcl
|
||||||
tclsh $(TOP)/tool/mksqlite3c.tcl
|
tclsh $(TOP)/tool/mksqlite3c.tcl
|
||||||
|
cp tsrc/shell.c tsrc/sqlite3ext.h .
|
||||||
|
cp $(TOP)/ext/session/sqlite3session.h .
|
||||||
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
|
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
|
||||||
cat sqlite3.c >>tclsqlite3.c
|
cat sqlite3.c >>tclsqlite3.c
|
||||||
echo '#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
|
echo '#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
|
||||||
@ -558,9 +560,11 @@ testfixture$(EXE): $(TESTSRC2) libsqlite3.a $(TESTSRC) $(TOP)/src/tclsqlite.c
|
|||||||
$(TESTSRC) $(TESTSRC2) $(TOP)/src/tclsqlite.c \
|
$(TESTSRC) $(TESTSRC2) $(TOP)/src/tclsqlite.c \
|
||||||
-o testfixture$(EXE) $(LIBTCL) libsqlite3.a $(THREADLIB)
|
-o testfixture$(EXE) $(LIBTCL) libsqlite3.a $(THREADLIB)
|
||||||
|
|
||||||
amalgamation-testfixture$(EXE): sqlite3.c $(TESTSRC) $(TOP)/src/tclsqlite.c
|
amalgamation-testfixture$(EXE): sqlite3.c $(TESTSRC) $(TOP)/src/tclsqlite.c \
|
||||||
|
$(TOP)/ext/session/test_session.c
|
||||||
$(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \
|
$(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \
|
||||||
$(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c \
|
$(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c \
|
||||||
|
$(TOP)/ext/session/test_session.c \
|
||||||
-o testfixture$(EXE) $(LIBTCL) $(THREADLIB)
|
-o testfixture$(EXE) $(LIBTCL) $(THREADLIB)
|
||||||
|
|
||||||
fts3-testfixture$(EXE): sqlite3.c fts3amal.c $(TESTSRC) $(TOP)/src/tclsqlite.c
|
fts3-testfixture$(EXE): sqlite3.c fts3amal.c $(TESTSRC) $(TOP)/src/tclsqlite.c
|
||||||
|
20
manifest
20
manifest
@ -1,9 +1,9 @@
|
|||||||
C Adjust\sthe\sMSVC\smakefile\sso\sthat\sit\scorrectly\shandles\sthe\ssessions\nextension\sbeing\sincluded\sin\sthe\samalgamation.\s\sImport\sthe\stest\scase\nchanges\sthat\sappeared\sin\s3.7.16\sfinal.
|
C Include\sthe\ssqlite3session.h\sheader\sfile\sin\swith\ssqlite3.h.\s\sMake\ssure\nthe\ssession\sAPIs\sare\sall\spublic.
|
||||||
D 2013-03-18T16:24:33.543
|
D 2013-03-19T15:23:18.846
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in f33fad60e6fa3cc15f6a39609a256b340a1c12d9
|
F Makefile.in 174bfca74e57f38699e3412a984f6b38106750fa
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
F Makefile.msc c56c19e93d5de6dde495d68d28d8455a5bab9917
|
F Makefile.msc 0ad7d4278a3b7e0c56d3ca7cc607b34acc1df516
|
||||||
F Makefile.vxworks b18ad88e9a8c6a001f5cf4a389116a4f1a7ab45f
|
F Makefile.vxworks b18ad88e9a8c6a001f5cf4a389116a4f1a7ab45f
|
||||||
F README cd04a36fbc7ea56932a4052d7d0b7f09f27c33d6
|
F README cd04a36fbc7ea56932a4052d7d0b7f09f27c33d6
|
||||||
F VERSION 6d4f66eaebabc42ef8c2a4d2d0caf4ce7ee81137
|
F VERSION 6d4f66eaebabc42ef8c2a4d2d0caf4ce7ee81137
|
||||||
@ -115,7 +115,7 @@ F ext/session/sqlite3session.h f374c9c4c96e08f67ac418871c29d423245c7673
|
|||||||
F ext/session/test_session.c ea4dc9b4a1895c8e6bddcbfe3838d7eb57df2d99
|
F ext/session/test_session.c ea4dc9b4a1895c8e6bddcbfe3838d7eb57df2d99
|
||||||
F install-sh 9d4de14ab9fb0facae2f48780b874848cbf2f895 x
|
F install-sh 9d4de14ab9fb0facae2f48780b874848cbf2f895 x
|
||||||
F ltmain.sh 3ff0879076df340d2e23ae905484d8c15d5fdea8
|
F ltmain.sh 3ff0879076df340d2e23ae905484d8c15d5fdea8
|
||||||
F main.mk 9422cb87866650146b89d742c666e8abd5e1ab6a
|
F main.mk 01f02b625cc1b8609690aaddb00e2fbb1edbeec5
|
||||||
F mkdll.sh 7d09b23c05d56532e9d44a50868eb4b12ff4f74a
|
F mkdll.sh 7d09b23c05d56532e9d44a50868eb4b12ff4f74a
|
||||||
F mkextu.sh 416f9b7089d80e5590a29692c9d9280a10dbad9f
|
F mkextu.sh 416f9b7089d80e5590a29692c9d9280a10dbad9f
|
||||||
F mkextw.sh 4123480947681d9b434a5e7b1ee08135abe409ac
|
F mkextw.sh 4123480947681d9b434a5e7b1ee08135abe409ac
|
||||||
@ -1022,8 +1022,8 @@ F tool/mkkeywordhash.c bb52064aa614e1426445e4b2b9b00eeecd23cc79
|
|||||||
F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e
|
F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e
|
||||||
F tool/mkspeedsql.tcl a1a334d288f7adfe6e996f2e712becf076745c97
|
F tool/mkspeedsql.tcl a1a334d288f7adfe6e996f2e712becf076745c97
|
||||||
F tool/mksqlite3c-noext.tcl 8bce31074e4cbe631bb7676526a048335f4c9f02
|
F tool/mksqlite3c-noext.tcl 8bce31074e4cbe631bb7676526a048335f4c9f02
|
||||||
F tool/mksqlite3c.tcl bb8afe0948d88d5d9e6f80d75f2b89face94af08
|
F tool/mksqlite3c.tcl aa76553fe5f5fc93772f3bb1d1626421b454e7e5
|
||||||
F tool/mksqlite3h.tcl 78013ad79a5e492e5f764f3c7a8ef834255061f8
|
F tool/mksqlite3h.tcl 280a819542c2a001c342e4bfe829974a76cb449e
|
||||||
F tool/mksqlite3internalh.tcl 3dca7bb5374cee003379b8cbac73714f610ef795
|
F tool/mksqlite3internalh.tcl 3dca7bb5374cee003379b8cbac73714f610ef795
|
||||||
F tool/mkvsix.tcl 0be7f7a591f1e83f9199cb82911b66668ca484c9
|
F tool/mkvsix.tcl 0be7f7a591f1e83f9199cb82911b66668ca484c9
|
||||||
F tool/offsets.c fe4262fdfa378e8f5499a42136d17bf3b98f6091
|
F tool/offsets.c fe4262fdfa378e8f5499a42136d17bf3b98f6091
|
||||||
@ -1051,7 +1051,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
||||||
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
||||||
P 2d15c2685750b930c5b7e2f06cb056b24a037967 66d5f2b76750f3520eb7a495f6247206758f5b90
|
P 9bac09a99aef5f18386037b409869d760c520d53
|
||||||
R 2176dc6cddaef86d42b3729c5996485e
|
R f21fcc9e1243effe28692f83a9850041
|
||||||
U drh
|
U drh
|
||||||
Z 1f183a91c30c6bc258b1a36f7025012a
|
Z b7b8384c096e1370a180493dde9bfbdb
|
||||||
|
@ -1 +1 @@
|
|||||||
9bac09a99aef5f18386037b409869d760c520d53
|
ec490336bc6629d3910667ece1bbc4685a199546
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Begin by reading the "sqlite3.h" header file. Extract the version number
|
# Begin by reading the "sqlite3.h" header file. Extract the version number
|
||||||
# from in this file. The versioon number is needed to generate the header
|
# from in this file. The version number is needed to generate the header
|
||||||
# comment of the amalgamation.
|
# comment of the amalgamation.
|
||||||
#
|
#
|
||||||
if {[lsearch $argv --nostatic]>=0} {
|
if {[lsearch $argv --nostatic]>=0} {
|
||||||
@ -121,6 +121,7 @@ foreach hdr {
|
|||||||
set available_hdr($hdr) 1
|
set available_hdr($hdr) 1
|
||||||
}
|
}
|
||||||
set available_hdr(sqliteInt.h) 0
|
set available_hdr(sqliteInt.h) 0
|
||||||
|
set available_hdr(sqlite3session.h) 0
|
||||||
|
|
||||||
# 78 stars used for comment formatting.
|
# 78 stars used for comment formatting.
|
||||||
set s78 \
|
set s78 \
|
||||||
@ -182,7 +183,7 @@ proc copy_file {filename} {
|
|||||||
if {[regexp $declpattern $line all funcname]} {
|
if {[regexp $declpattern $line all funcname]} {
|
||||||
# Add the SQLITE_PRIVATE or SQLITE_API keyword before functions.
|
# Add the SQLITE_PRIVATE or SQLITE_API keyword before functions.
|
||||||
# so that linkage can be modified at compile-time.
|
# so that linkage can be modified at compile-time.
|
||||||
if {[regexp {^sqlite3_} $funcname]} {
|
if {[regexp {^sqlite3(session)?_} $funcname]} {
|
||||||
puts $out "SQLITE_API $line"
|
puts $out "SQLITE_API $line"
|
||||||
} else {
|
} else {
|
||||||
puts $out "SQLITE_PRIVATE $line"
|
puts $out "SQLITE_PRIVATE $line"
|
||||||
|
@ -68,9 +68,15 @@ set declpattern {^ *[a-zA-Z][a-zA-Z_0-9 ]+ \**sqlite3_[_a-zA-Z0-9]+\(}
|
|||||||
# Force the output to use unix line endings, even on Windows.
|
# Force the output to use unix line endings, even on Windows.
|
||||||
fconfigure stdout -translation lf
|
fconfigure stdout -translation lf
|
||||||
|
|
||||||
# Process the src/sqlite.h.in ext/rtree/sqlite3rtree.h files.
|
set filelist [subst {
|
||||||
|
$TOP/src/sqlite.h.in
|
||||||
|
$TOP/ext/rtree/sqlite3rtree.h
|
||||||
|
$TOP/ext/session/sqlite3session.h
|
||||||
|
}]
|
||||||
|
|
||||||
|
# Process the source files.
|
||||||
#
|
#
|
||||||
foreach file [list $TOP/src/sqlite.h.in $TOP/ext/rtree/sqlite3rtree.h] {
|
foreach file $filelist {
|
||||||
set in [open $file]
|
set in [open $file]
|
||||||
while {![eof $in]} {
|
while {![eof $in]} {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user