diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 70a9ad9e2..8cd1d6414 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.480 2008/07/22 05:13:30 shane Exp $ +** $Id: main.c,v 1.481 2008/07/24 08:20:40 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -267,6 +267,13 @@ int sqlite3_config(int op, ...){ } #endif +#if defined(SQLITE_ENABLE_MEMSYS6) + case SQLITE_CONFIG_CHUNKALLOC: { + sqlite3Config.m = *sqlite3MemGetMemsys6(); + break; + } +#endif + default: { rc = SQLITE_ERROR; break; |