1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove the last traces of SQLITE_ENABLE_REDEF_IO. (CVS 4377)

FossilOrigin-Name: 38dff76ddf0ec7d2cd0d2e1282f9c36558e5661a
This commit is contained in:
drh
2007-09-03 15:26:20 +00:00
parent 33f4e02af6
commit 386ef28bc2
5 changed files with 11 additions and 18 deletions

View File

@@ -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.14 2007/08/31 17:42:48 danielk1977 Exp $
** $Id: test_config.c,v 1.15 2007/09/03 15:26:21 drh Exp $
*/
#include "sqliteLimit.h"
@@ -318,12 +318,6 @@ Tcl_SetVar2(interp, "sqlite_options", "long_double",
Tcl_SetVar2(interp, "sqlite_options", "progress", "1", TCL_GLOBAL_ONLY);
#endif
#ifdef SQLITE_ENABLE_REDEF_IO
Tcl_SetVar2(interp, "sqlite_options", "redefio", "1", TCL_GLOBAL_ONLY);
#else
Tcl_SetVar2(interp, "sqlite_options", "redefio", "0", TCL_GLOBAL_ONLY);
#endif
#ifdef SQLITE_OMIT_REINDEX
Tcl_SetVar2(interp, "sqlite_options", "reindex", "0", TCL_GLOBAL_ONLY);
#else