diff options
author | drh <> | 2024-07-31 21:46:46 +0000 |
---|---|---|
committer | drh <> | 2024-07-31 21:46:46 +0000 |
commit | 47ce12d239ae699a4d361458130d624ec501c118 (patch) | |
tree | 8b4d7ac62c969e0c9403c8a34f0ff26666aec4aa /src/test_intarray.c | |
parent | 07f215ad9e3606253d9bc52d59e46a9c7d9a1b63 (diff) | |
parent | ed1b616f4a07559fdaaa1668567990ff122ff439 (diff) | |
download | sqlite-47ce12d239ae699a4d361458130d624ec501c118.tar.gz sqlite-47ce12d239ae699a4d361458130d624ec501c118.zip |
Fix the tclsqlite.c TCL interface module so that it works with both Tcl8 and
Tcl9. Make changes across the TCL-based test harness to enable SQLite to
be tested with either Tcl8 or Tcl9. Get the --with-tcl= argument on the
configure script working. Testing changes only - no changes to the SQLite core.
FossilOrigin-Name: 2a04b1bea12b0b4c3387d675f487337533ac0813248f70085398485e4cacd691
Diffstat (limited to 'src/test_intarray.c')
-rw-r--r-- | src/test_intarray.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/test_intarray.c b/src/test_intarray.c index a978ed585..16c1df2e9 100644 --- a/src/test_intarray.c +++ b/src/test_intarray.c @@ -279,14 +279,7 @@ SQLITE_API int sqlite3_intarray_bind( ** Everything below is interface for testing this module. */ #ifdef SQLITE_TEST -#if defined(INCLUDE_SQLITE_TCL_H) -# include "sqlite_tcl.h" -#else -# include "tcl.h" -# ifndef SQLITE_TCLAPI -# define SQLITE_TCLAPI -# endif -#endif +#include "tclsqlite.h" /* ** Routines to encode and decode pointers |