diff options
author | dan <dan@noemail.net> | 2016-10-21 10:09:22 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2016-10-21 10:09:22 +0000 |
commit | ceb97c110715008c71e79d6f84936c42e10501b8 (patch) | |
tree | 4d298fc9d9c664f59f958f432bb59e008df2572b /src | |
parent | 86873baa5887761901e78546f7bdaa684d68cfff (diff) | |
download | sqlite-ceb97c110715008c71e79d6f84936c42e10501b8.tar.gz sqlite-ceb97c110715008c71e79d6f84936c42e10501b8.zip |
If SQLITE_DIRECT_OVERFLOW_READ is defined at compile time, add "DIRECT_OVERFLOW_READ" to the list of symbols returned by "PRAGMA compile_options".
FossilOrigin-Name: b7d9727bff2e840af4b090872c991693e78e6076
Diffstat (limited to 'src')
-rw-r--r-- | src/ctime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c index 09587ea88..55ae13af7 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -66,6 +66,9 @@ static const char * const azCompileOpt[] = { #if defined(SQLITE_DEFAULT_MMAP_SIZE) && !defined(SQLITE_DEFAULT_MMAP_SIZE_xc) "DEFAULT_MMAP_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_MMAP_SIZE), #endif +#if SQLITE_DIRECT_OVERFLOW_READ + "DIRECT_OVERFLOW_READ", +#endif #if SQLITE_DISABLE_DIRSYNC "DISABLE_DIRSYNC", #endif |