On Mon, 2005-08-22 at 10:51 -0400, Downey, Shawn wrote: > We use Tcl/Tk 8.3.5 and are sort of stuck with it. The new tclsqlite.c > declares Tcl_WideInt which is not defined in the include files for > Tcl/Tk 8.3.5. >
Tclsqlite.c requires Tcl 8.4 or later. You can try to back port it if you want, but that will be tricky. SQLite uses 64-bit integers and they did not appear in Tcl until version 8.4 so it is not clear how you will handle them in a back-ported version. (Convert them to strings?) FWIW: If you are speaking of the project that I once worked on, I have compiled it using Tcl 8.4 and it worked fine. I would recommend that you upgrade. Going to Tcl 8.4 (or 8.5) will cost you perhaps 1 day of work, but will easily pay back that much and more as you continue to work with the code. -- D. Richard Hipp <[EMAIL PROTECTED]>

