diff options
author | drh <> | 2024-10-10 10:47:37 +0000 |
---|---|---|
committer | drh <> | 2024-10-10 10:47:37 +0000 |
commit | 64366ae114c69c61de03f5ccbfa2ee5956795d0c (patch) | |
tree | d4515be77f23c6ed05b60a4a96dce733227a5fe3 /src | |
parent | da1bf77cc250414d61128085867b5d7490de6532 (diff) | |
parent | 7b179a309802dc588af2dc028f570f388f482734 (diff) | |
download | sqlite-64366ae114c69c61de03f5ccbfa2ee5956795d0c.tar.gz sqlite-64366ae114c69c61de03f5ccbfa2ee5956795d0c.zip |
Improvements to TCL9 support. Fixes to the Makefiles so that the "install"
targets are consistent and so that they work better with TCL9.
FossilOrigin-Name: bcfae7183e92ce37717852bae5b1dd526903fa8429fb6f738c2147d4e5231642
Diffstat (limited to 'src')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 0c8888fd4..1fd214fe8 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3981,7 +3981,7 @@ static int SQLITE_TCLAPI DbMain( ** The EXTERN macros are required by TCL in order to work on windows. */ EXTERN int Sqlite3_Init(Tcl_Interp *interp){ - int rc = Tcl_InitStubs(interp, "8.4", 0) ? TCL_OK : TCL_ERROR; + int rc = Tcl_InitStubs(interp, "8.5-", 0) ? TCL_OK : TCL_ERROR; if( rc==TCL_OK ){ Tcl_CreateObjCommand(interp, "sqlite3", (Tcl_ObjCmdProc*)DbMain, 0, 0); #ifndef SQLITE_3_SUFFIX_ONLY |