diff options
Diffstat (limited to 'src/test_config.c')
-rw-r--r-- | src/test_config.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test_config.c b/src/test_config.c index aa4487d4b..4fa74af69 100644 --- a/src/test_config.c +++ b/src/test_config.c @@ -16,7 +16,7 @@ ** The focus of this file is providing the TCL testing layer ** access to compile-time constants. ** -** $Id: test_config.c,v 1.37 2008/09/23 10:16:05 drh Exp $ +** $Id: test_config.c,v 1.38 2008/10/07 15:25:49 drh Exp $ */ #include "sqliteLimit.h" @@ -87,6 +87,12 @@ static void set_options(Tcl_Interp *interp){ Tcl_SetVar2(interp, "sqlite_options", "mem5", "0", TCL_GLOBAL_ONLY); #endif +#ifdef SQLITE_MUTEX_OMIT + Tcl_SetVar2(interp, "sqlite_options", "mutex", "0", TCL_GLOBAL_ONLY); +#else + Tcl_SetVar2(interp, "sqlite_options", "mutex", "1", TCL_GLOBAL_ONLY); +#endif + #ifdef SQLITE_OMIT_ALTERTABLE Tcl_SetVar2(interp, "sqlite_options", "altertable", "0", TCL_GLOBAL_ONLY); #else |