]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Add the RTREE_INT_ONLY configuration parameter to the compile-time options
authordrh <drh@noemail.net>
Thu, 13 Sep 2012 12:10:55 +0000 (12:10 +0000)
committerdrh <drh@noemail.net>
Thu, 13 Sep 2012 12:10:55 +0000 (12:10 +0000)
logic.

FossilOrigin-Name: 98b971fb24e0ee5f881b13401c7af51fc6effd0e

manifest
manifest.uuid
src/ctime.c

index 1694f55d162e0848b5d7a440014927edc5d58190..12d75e58974399bece12cf9cc27a9a3f9ca163a0 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Allow\sSQLite\sto\swork\son\sWin32\swith\sSQLITE_OS_WINNT=0\sas\slong\sas\sWAL\sis\sdisabled.
-D 2012-09-13T01:51:02.094
+C Add\sthe\sRTREE_INT_ONLY\sconfiguration\sparameter\sto\sthe\scompile-time\soptions\nlogic.
+D 2012-09-13T12:10:55.801
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 5f4f26109f9d80829122e0e09f9cda008fa065fb
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -127,7 +127,7 @@ F src/btreeInt.h 4e5c2bd0f9b36b2a815a6d84f771a61a65830621
 F src/build.c a3b700afd475e6387da59be6f2e86161e80d6d87
 F src/callback.c 0cb4228cdcd827dcc5def98fb099edcc9142dbcd
 F src/complete.c dc1d136c0feee03c2f7550bafc0d29075e36deac
-F src/ctime.c 500d019da966631ad957c37705642be87524463b
+F src/ctime.c 72a70dcfda75d3a1f81041ce4573e7afddcd8e4e
 F src/date.c 067a81c9942c497aafd2c260e13add8a7d0c7dd4
 F src/delete.c 335f36750dc6ac88d580aa36a6487459be9889de
 F src/expr.c 217840a107dcc1e5dbb57cea311daad04bedbb9a
@@ -1013,7 +1013,7 @@ F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/win/sqlite.vsix 67d8a99aceb56384a81b3f30d6c71743146d2cc9
-P 9402f81fade5fcae0a3a6efdc7a5cdf71fc2e79f
-R daf813c87e17f5252bebfe0af09b2572
-U mistachkin
-Z 66d6c356671ca3d281bc85c60ca24a37
+P c1a8557008e56aa9bcb4565e4178fc57295c563d
+R 9676de67e3c4ff5e7a6d746a8553a98b
+U drh
+Z b8cdbfa4893d7c86c8f143ff32f7432d
index c1c8fdacbff5d128bfab09c4fa4f5c13d7f35031..4b38c1dc4b1e9cfb0aa6e32a7516d7aa2eabb87b 100644 (file)
@@ -1 +1 @@
-c1a8557008e56aa9bcb4565e4178fc57295c563d
\ No newline at end of file
+98b971fb24e0ee5f881b13401c7af51fc6effd0e
\ No newline at end of file
index 61cf4e3df12a9d08df18a6ef701818e9d3750ffb..5dee7247478727a6dab07f89df4466ac7d678ed4 100644 (file)
@@ -338,6 +338,9 @@ static const char * const azCompileOpt[] = {
 #ifdef SQLITE_PROXY_DEBUG
   "PROXY_DEBUG",
 #endif
+#ifdef SQLITE_RTREE_INT_ONLY
+  "RTREE_INT_ONLY",
+#endif
 #ifdef SQLITE_SECURE_DELETE
   "SECURE_DELETE",
 #endif