From: dan Date: Mon, 4 Apr 2011 14:03:58 +0000 (+0000) Subject: Have test_syscall.c include "sqliteInt.h". Otherwise the SQLITE_OS_UNIX symbol may... X-Git-Tag: version-3.7.6~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68db57b6917e83ce4525e80d09a21f4436508b07;p=thirdparty%2Fsqlite.git Have test_syscall.c include "sqliteInt.h". Otherwise the SQLITE_OS_UNIX symbol may not be defined correctly. FossilOrigin-Name: fda8fadd837e399d3fab7a9e6894617a5788d679 --- diff --git a/manifest b/manifest index 65800fd981..7af2bb9e4b 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Move\sthe\sexpired-statement\stest\sfor\sOP_Function\suntil\safter\sall\smemory\shas\nbeen\sfreed.\s\sThe\stest\sis\sstill\scommented\sout,\showever. -D 2011-04-04T12:29:20.265 +C Have\stest_syscall.c\sinclude\s"sqliteInt.h".\sOtherwise\sthe\sSQLITE_OS_UNIX\ssymbol\smay\snot\sbe\sdefined\scorrectly. +D 2011-04-04T14:03:58.599 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 7a4d9524721d40ef9ee26f93f9bd6a51dba106f2 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -222,7 +222,7 @@ F src/test_schema.c 8c06ef9ddb240c7a0fcd31bc221a6a2aade58bf0 F src/test_server.c bbba05c144b5fc4b52ff650a4328027b3fa5fcc6 F src/test_stat.c f682704b5d1ba8e1d4e7e882a6d7922e2dcf066c F src/test_superlock.c 2b97936ca127d13962c3605dbc9a4ef269c424cd -F src/test_syscall.c 34ce1be806cd180e241bc688ae3762e5e7825bda +F src/test_syscall.c 10ced09d6e9fba929531b25b46a8e5675f4f9940 F src/test_tclvar.c f4dc67d5f780707210d6bb0eb6016a431c04c7fa F src/test_thread.c bedd05cad673dba53326f3aa468cc803038896c0 F src/test_vfs.c 2ed8853c1e51ac6f9ea091f7ce4e0d618bba8b86 @@ -926,7 +926,7 @@ F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/split-sqlite3c.tcl d9be87f1c340285a3e081eb19b4a247981ed290c F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P 4e996f36c73c5e768a954394fcbbf5e17576c807 -R 4c64876ffe2c0a670add1f1b62152ed8 -U drh -Z badc0ef9dd3fcc800ebaf4f50ec0d36c +P 425e3edb146c497817855dd741878709a25c8b98 +R bfbf218f3efb47247391ca878c887fe4 +U dan +Z 9616075d7db18b4b467697e48342db18 diff --git a/manifest.uuid b/manifest.uuid index 3a4413c91a..020dda7062 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -425e3edb146c497817855dd741878709a25c8b98 \ No newline at end of file +fda8fadd837e399d3fab7a9e6894617a5788d679 \ No newline at end of file diff --git a/src/test_syscall.c b/src/test_syscall.c index c570b71e81..e3cdcfdfce 100644 --- a/src/test_syscall.c +++ b/src/test_syscall.c @@ -75,6 +75,7 @@ #include #include +#include "sqliteInt.h" #ifdef SQLITE_OS_UNIX /* From test1.c */