The script that cross-compiles the windows DLLs now exports the symbols

Tclsqlite_Init and Sqlite_Init used to initialize the TCL extension.
Ticket #1137. (CVS 2358)

FossilOrigin-Name: f18704777407d84f5ba23333e8d4bcdcb09b4a70
This commit is contained in:
drh 2005-02-23 00:26:12 +00:00
parent 3fdf826699
commit 29088eb6c9
3 changed files with 10 additions and 8 deletions

View File

@ -1,5 +1,5 @@
C Fix\sbug\sreported\son\sthe\smailing\slist\sfor\sWHERE\sclauses\slike\s(rowid<'2').\s(CVS\s2357)
D 2005-02-22T09:47:18
C The\sscript\sthat\scross-compiles\sthe\swindows\sDLLs\snow\sexports\sthe\ssymbols\nTclsqlite_Init\sand\sSqlite_Init\sused\sto\sinitialize\sthe\sTCL\sextension.\nTicket\s#1137.\s(CVS\s2358)
D 2005-02-23T00:26:12
F Makefile.in 76443a83549d1539105e12d13bd0054a05ab2214
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@ -17,7 +17,7 @@ F doc/report1.txt a031aaf37b185e4fa540223cb516d3bccec7eeac
F install-sh 9d4de14ab9fb0facae2f48780b874848cbf2f895
F ltmain.sh f6b283068efa69f06eb8aa1fe4bddfdbdeb35826
F main.mk 632150f494ae1a96c8ac3cda0229a77cd18cb843
F mkdll.sh 468d4f41d3ea98221371df4825cfbffbaac4d7e4
F mkdll.sh 5ec23622515d5bf8969404e80cfb5e220ddf0512
F mkopcodec.awk bd46ad001c98dfbab07b1713cb8e692fa0e5415d
F mkopcodeh.awk e4d010870a3e98fd4323635c31565a3ca8584741
F mkso.sh 125868def279650a07d3f0f5e8476fecf99613fd
@ -274,7 +274,7 @@ F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl 3e522a06ad41992023c80ca29a048ae2331ca5bd
P 36dbf5e929ede7768e8b63219e54548384a8fab5
R 17de5ae7bd4c63838d9f895c13f76a43
U danielk1977
Z 99d54793828c857958404eec4961af97
P b323f0f2832ac5d225d880db6f56314d2f766a25
R f024288b3fe4fd17c52073db0d64ea20
U drh
Z 1ca90fe2c70fc42ca54b30f8507e120e

View File

@ -1 +1 @@
b323f0f2832ac5d225d880db6f56314d2f766a25
f18704777407d84f5ba23333e8d4bcdcb09b4a70

View File

@ -21,7 +21,9 @@ for i in *.c; do
done
echo 'EXPORTS' >tclsqlite3.def
echo 'Tclsqlite3_Init' >>tclsqlite3.def
echo 'Tclsqlite_Init' >>tclsqlite3.def
echo 'Sqlite3_Init' >>tclsqlite3.def
echo 'Sqlite_Init' >>tclsqlite3.def
i386-mingw32msvc-dllwrap \
--def tclsqlite3.def -v --export-all \
--driver-name i386-mingw32msvc-gcc \