1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Update the SQLLOG logic so that to builds in accordance with the instructions

in the header comment.

FossilOrigin-Name: ee6f2feec7d777a969ddba6dc00fb571d64e57f8
This commit is contained in:
drh
2015-11-12 23:48:08 +00:00
parent 8d4482da96
commit 5e3cefe3d0
4 changed files with 11 additions and 20 deletions

View File

@@ -527,15 +527,6 @@
# define SQLITE_DEFAULT_PCACHE_INITSZ 100
#endif
/*
** If SQLITE_INIT_SQLLOG is defined, then SQLITE_ENABLE_SQLLOG is
** automatically defined as well.
*/
#if defined(SQLITE_INIT_SQLLOG) && !defined(SQLITE_ENABLE_SQLLOG)
# define SQLITE_ENABLE_SQLLOG 1
#endif
/*
** GCC does not define the offsetof() macro so we'll have to do it
** ourselves.