]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typo in Windows makefile. Make sure the WaitForSingleObjectEx system call is...
authormistachkin <mistachkin@noemail.net>
Fri, 2 May 2014 19:12:37 +0000 (19:12 +0000)
committermistachkin <mistachkin@noemail.net>
Fri, 2 May 2014 19:12:37 +0000 (19:12 +0000)
FossilOrigin-Name: d7ed529fa2aa5cb13edaabca2acaad06dffef569

Makefile.msc
manifest
manifest.uuid
src/os_win.c

index 226d464785dee7fe64b007626240c5fdf57bce15..db47f027554b764fa93f83afc3ff71659a34932a 100644 (file)
@@ -564,7 +564,7 @@ LIBOBJS0 = vdbe.lo parse.lo alter.lo analyze.lo attach.lo auth.lo \
          notify.lo opcodes.lo os.lo os_unix.lo os_win.lo \
          pager.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
          random.lo resolve.lo rowset.lo rtree.lo select.lo status.lo \
-         table.lo threads.o tokenize.lo trigger.lo \
+         table.lo threads.lo tokenize.lo trigger.lo \
          update.lo util.lo vacuum.lo \
          vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
          vdbetrace.lo wal.lo walker.lo where.lo utf.lo vtab.lo
index d82c20faf710a02bcfa5b3d94472f64b7bc1e164..68b54aaa89296f94cfd81448479bab0dba771876 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,9 +1,9 @@
-C Do\snot\srun\sthe\svdbeRecordCompareDebug()\sassert\sif\spKeyInfo->db\sis\sNULL\ssince\nin\sthat\scase\sthere\swould\sbe\sno\sway\sto\scheck\sfor\sa\smemory\sallocation\sfailure.
-D 2014-05-02T18:46:52.058
+C Fix\stypo\sin\sWindows\smakefile.\s\sMake\ssure\sthe\sWaitForSingleObjectEx\ssystem\scall\sis\salways\savailable.
+D 2014-05-02T19:12:37.015
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in ad0921c4b2780d01868cf69b419a4f102308d125
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
-F Makefile.msc 153eb9b9725bc7b8e4dbe963219298e0c4a644b0
+F Makefile.msc 7d6981e8e14d8189a2a2f9b4a485f40b2032cb2e
 F Makefile.vxworks db21ed42a01d5740e656b16f92cb5d8d5e5dd315
 F README.md 64f270c43c38c46de749e419c22f0ae2f4499fe8
 F VERSION 9f823c026c6a32fc5f84d212a8aae0a221dba45c
@@ -205,7 +205,7 @@ F src/os.c 1b147e4cf7cc39e618115c14a086aed44bc91ace
 F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f
 F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
 F src/os_unix.c ae4b5240af4619d711301d7992396e182585269f
-F src/os_win.c 8245fe9184300e641d02e29a8ca95cefe0cb0fd0
+F src/os_win.c 187fad4d385b3b26ec6fd4b703b1b087ad6a5c4d
 F src/pager.c ab62a24218d87dda1be641f6c5ad291bff78fd94
 F src/pager.h ffd5607f7b3e4590b415b007a4382f693334d428
 F src/parse.y 22d6a074e5f5a7258947a1dc55a9bf946b765dd0
@@ -1170,7 +1170,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P d9549de31741239ece060e448b592ce8fc5b8042
-R bd79c5eed170ef831b62fddde9ae2198
-U drh
-Z beeab334f565837c4ac52f73c3e92e7b
+P 63ed2d6acb82be8a74dbf6a61388be6da6113985
+R 820b790c56c4122e03b250f07fbb06ef
+U mistachkin
+Z 87a0e192077836669877b548f0fe55d8
index fc320531a27a5f00ba4552e6ff2249da0c806ded..30c06534ccf7bc7246cc6b373fc41333f7f10201 100644 (file)
@@ -1 +1 @@
-63ed2d6acb82be8a74dbf6a61388be6da6113985
\ No newline at end of file
+d7ed529fa2aa5cb13edaabca2acaad06dffef569
\ No newline at end of file
index 44eb7e686f12deeade13ea1b9106c3ea12041ac6..10fea2638ca00d7e1d848e42a2be535412239c66 100644 (file)
@@ -948,11 +948,7 @@ static struct win_syscall {
 #define osWaitForSingleObject ((DWORD(WINAPI*)(HANDLE, \
         DWORD))aSyscall[63].pCurrent)
 
-#if SQLITE_OS_WINRT
   { "WaitForSingleObjectEx",   (SYSCALL)WaitForSingleObjectEx,   0 },
-#else
-  { "WaitForSingleObjectEx",   (SYSCALL)0,                       0 },
-#endif
 
 #define osWaitForSingleObjectEx ((DWORD(WINAPI*)(HANDLE,DWORD, \
         BOOL))aSyscall[64].pCurrent)