diff options
author | drh <drh@noemail.net> | 2020-12-07 17:15:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-12-07 17:15:32 +0000 |
commit | f6e904bd9243498889ae3e628aeef9f697c728c9 (patch) | |
tree | 3f3cc4437603e77f401151dac1083d9a2e8f7a69 /src/ctime.c | |
parent | aeb6bc56280c7961a0c5fe1a1e26a8e51bf8648d (diff) | |
download | sqlite-f6e904bd9243498889ae3e628aeef9f697c728c9.tar.gz sqlite-f6e904bd9243498889ae3e628aeef9f697c728c9.zip |
Begin adding new SQL functions that depend on -lm: ceil(), ceiling(),
floor(), ln(), log(), and log10() so far. More to follow.
FossilOrigin-Name: 4db5f2f7875f6df78630a7816fc018141a6eee2e295b44fc7627eb66d07881ea
Diffstat (limited to 'src/ctime.c')
-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 e3e1e79a9..f0fdccbdc 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -259,6 +259,9 @@ static const char * const sqlite3azCompileOpt[] = { #ifdef SQLITE_ENABLE_LOCKING_STYLE "ENABLE_LOCKING_STYLE=" CTIMEOPT_VAL(SQLITE_ENABLE_LOCKING_STYLE), #endif +#if SQLITE_ENABLE_MATH_FUNCTIONS + "ENABLE_MATH_FUNCTIONS" +#endif #if SQLITE_ENABLE_MEMORY_MANAGEMENT "ENABLE_MEMORY_MANAGEMENT", #endif |