diff --git a/manifest b/manifest index 99343dbe57..e9f6e2333f 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Several\smodifications\sto\sthe\suse\sof\sthe\sMAX_PATH\smacro\son\sWindows\sto\simprove\sconsistency. -D 2013-08-24T23:55:01.356 +C Merge\supdates\sfrom\strunk. +D 2013-08-26T19:36:18.286 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -202,7 +202,7 @@ F src/notify.c 976dd0f6171d4588e89e874fcc765e92914b6d30 F src/os.c b4ad71336fd96f97776f75587cd9e8218288f5be F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04 -F src/os_unix.c 44a2b26acd3f3f3a0b5d8495af945cec70a9e9df +F src/os_unix.c c27a14a05061e4e690bd3949dc0246bda35e399d F src/os_win.c 339cdb887654f805a3e7225dd67f210cd5c831d3 F src/pager.c 2aa4444ffe86e9282d03bc349a4a5e49bd77c0e8 F src/pager.h f094af9f6ececfaa8a1e93876905a4f34233fb0c @@ -1105,7 +1105,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac -P 25b029d8f32440a94ef8af45153423f6702d7431 -R 43a5201efd5c79e69d4099d70d2d8790 +P bda4c47df8e80b4cc9e8aac8fd74482869f96107 edd5dbdc3239fc88799b822941603fcc828ecbb6 +R f8b228db3f91433cfd67191a80e72ad7 U mistachkin -Z 68ffb990c84dd84cc8ba4e540d45c8d3 +Z d72989ebb46558e2aa62256a6f0f9391 diff --git a/manifest.uuid b/manifest.uuid index ad42030f96..ed4f6aa8e8 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -bda4c47df8e80b4cc9e8aac8fd74482869f96107 \ No newline at end of file +9d6860098f96efc7ea60e2d6116fb7d0e2685a55 \ No newline at end of file diff --git a/src/os_unix.c b/src/os_unix.c index 0ae88517e4..580f8e60e7 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -451,6 +451,7 @@ static struct unix_syscall { { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 }, #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent) +#if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "mmap", (sqlite3_syscall_ptr)mmap, 0 }, #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[21].pCurrent) @@ -463,6 +464,7 @@ static struct unix_syscall { { "mremap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[23].pCurrent) +#endif }; /* End of the overrideable system calls */