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

Restore SQLITE_FORCE_OS_TRACE to the MSVC makefile, which was removed during a merge.

FossilOrigin-Name: c37f4d492f98ac5c07c08705a3826a3e86107306
This commit is contained in:
mistachkin
2015-04-16 16:27:29 +00:00
parent 0cbcffa75d
commit b10f22a141
4 changed files with 20 additions and 13 deletions

View File

@@ -365,8 +365,8 @@
/*
** Declarations used for tracing the operating system interfaces.
*/
#if (defined(SQLITE_DEBUG) && SQLITE_OS_WIN) || \
defined(SQLITE_TEST) || defined(SQLITE_FORCE_OS_TRACE)
#if defined(SQLITE_FORCE_OS_TRACE) || defined(SQLITE_TEST) || \
(defined(SQLITE_DEBUG) && SQLITE_OS_WIN)
extern int sqlite3OSTrace;
# define OSTRACE(X) if( sqlite3OSTrace ) sqlite3DebugPrintf X
# define SQLITE_HAVE_OS_TRACE