diff options
author | mistachkin <mistachkin@noemail.net> | 2016-07-28 14:37:04 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2016-07-28 14:37:04 +0000 |
commit | 52b1dbb5fc949a629d7213661c968c722b9e5029 (patch) | |
tree | f848086e4c79a2761c2e1e2ece243333a6ab4cd8 /src/test_osinst.c | |
parent | 69def7ff2f872b3c7579d93843ba504e61dc2b2f (diff) | |
download | sqlite-52b1dbb5fc949a629d7213661c968c722b9e5029.tar.gz sqlite-52b1dbb5fc949a629d7213661c968c722b9e5029.zip |
Allow the 'testfixture.exe' target to be compiled with the __stdcall calling convention.
FossilOrigin-Name: e8be3dfeabaa31b3490793cf8230faae1204be15
Diffstat (limited to 'src/test_osinst.c')
-rw-r--r-- | src/test_osinst.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/test_osinst.c b/src/test_osinst.c index e51ce77ef..5ab8ed5c9 100644 --- a/src/test_osinst.c +++ b/src/test_osinst.c @@ -1104,7 +1104,11 @@ int sqlite3_vfslog_register(sqlite3 *db){ #if defined(SQLITE_TEST) || defined(TCLSH) -#include <tcl.h> +#if defined(INCLUDE_SQLITE_TCL_H) +# include "sqlite_tcl.h" +#else +# include "tcl.h" +#endif static int test_vfslog( void *clientData, |