225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
+
|
Some files require special C-preprocessor macro definitions.
When compiling sqlite.c, the following macros are recommended:
* -DSQLITE_OMIT_LOAD_EXTENSION=1
* -DSQLITE_ENABLE_DBSTAT_VTAB=1
* -DSQLITE_ENABLE_FTS4=1
* -DSQLITE_ENABLE_LOCKING_STYLE=0
* -DSQLITE_LIKE_DOESNT_MATCH_BLOBS=1
* -DSQLITE_THREADSAFE=0
* -DSQLITE_DEFAULT_FILE_FORMAT=4
* -DSQLITE_ENABLE_EXPLAIN_COMMENTS=1
The first three symbol definitions above are required; the others are merely
recommended. Extension loading is omitted as a security measure. The dbstat
virtual table is needed for the [/help?cmd=/repo-tabsize|/repo-tabsize] page.
|