diff options
author | dan <Dan Kennedy> | 2025-02-11 18:32:22 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2025-02-11 18:32:22 +0000 |
commit | e5769f6525ef93e668ff398fc930437cbe5bca10 (patch) | |
tree | dc1fdb190c3ef9624b03fcbe532b6ffe2f2b8e07 /src | |
parent | 833dd3daff87be91150c6b76da0c7a05afe50c0c (diff) | |
download | sqlite-e5769f6525ef93e668ff398fc930437cbe5bca10.tar.gz sqlite-e5769f6525ef93e668ff398fc930437cbe5bca10.zip |
Update tool/mkctimec.tcl so that sqlite3_compileoption_xxx() APIs report on the SQLITE_ENABLE_SETLK_TIMEOUT option.
FossilOrigin-Name: 303e8009ab59aad32030407baf3eff9443f7f9bed7947218b78293b06bba1737
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 9f358bd27..835c71936 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -316,6 +316,9 @@ static const char * const sqlite3azCompileOpt[] = { #ifdef SQLITE_ENABLE_SESSION "ENABLE_SESSION", #endif +#ifdef SQLITE_ENABLE_SETLK_TIMEOUT + "ENABLE_SETLK_TIMEOUT", +#endif #ifdef SQLITE_ENABLE_SNAPSHOT "ENABLE_SNAPSHOT", #endif |