diff options
author | drh <drh@noemail.net> | 2005-04-28 19:03:37 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-04-28 19:03:37 +0000 |
commit | 89dec819d2817337f579142ec11477fcd88888b8 (patch) | |
tree | cc3e5b40f3b904c12ac46b76ff4c1e48f185dafa /src/tclsqlite.c | |
parent | 2e66f0b972eeaffc33464370aa5da1beb0c8fe0d (diff) | |
download | sqlite-89dec819d2817337f579142ec11477fcd88888b8.tar.gz sqlite-89dec819d2817337f579142ec11477fcd88888b8.zip |
Add hooks for the SSE extension. (CVS 2449)
FossilOrigin-Name: 90f4cf2ad57309dbd20954fc7fd60859bc44bcf4
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 634e875ba..3f76bdae6 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.122 2005/04/28 17:18:49 drh Exp $ +** $Id: tclsqlite.c,v 1.123 2005/04/28 19:03:37 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -1779,7 +1779,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetest4_Init(interp); Sqlitetest5_Init(interp); Md5_Init(interp); -#ifdef SQLITE_TEST_SSE +#ifdef SQLITE_SSE Sqlitetestsse_Init(interp); #endif } |