]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Make the SQLITE_ENABLE_8_3_NAMES compile-time option available to
authordrh <drh@noemail.net>
Thu, 3 Dec 2015 20:50:10 +0000 (20:50 +0000)
committerdrh <drh@noemail.net>
Thu, 3 Dec 2015 20:50:10 +0000 (20:50 +0000)
sqlite3_compileoption_used().

FossilOrigin-Name: 06338201f3f00151232e5c6a40edcdbea04d7553

manifest
manifest.uuid
src/ctime.c

index ce05de0d3c91d42136582cb6cedfa28c8f6e2e23..f8bc4600fb313f3e5a3a91db8835aed78bd796e9 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Cleaner\scode\sand\sadditional\scomments\son\sthe\shandling\sof\s8+3\sfilenames\swhen\ntrying\sto\sfind\sthe\sname\sof\sa\sdatabase\sfile\sbased\son\sits\sjournal\sfilename,\s\nin\sthe\sunix\sVFS.
-D 2015-12-03T20:42:28.920
+C Make\sthe\sSQLITE_ENABLE_8_3_NAMES\scompile-time\soption\savailable\sto\nsqlite3_compileoption_used().
+D 2015-12-03T20:50:10.543
 F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc e8fdca1cb89a1b58b5f4d3a130ea9a3d28cb314d
@@ -288,7 +288,7 @@ F src/btreeInt.h 3ab435ed27adea54d040584b0bcc488ee7db1e38
 F src/build.c e83da4d004a4e050c01acbb821ff7a7b1019c29b
 F src/callback.c 7b44ce59674338ad48b0e84e7b72f935ea4f68b0
 F src/complete.c addcd8160b081131005d5bc2d34adf20c1c5c92f
-F src/ctime.c 58eda76364fb6f374e044aa4493219b13abf9400
+F src/ctime.c 60e135af364d777a9ab41c97e5e89cd224da6198
 F src/date.c fb1c99172017dcc8e237339132c91a21a0788584
 F src/dbstat.c ffd63fc8ba7541476ced189b95e95d7f2bc63f78
 F src/delete.c 00af9f08a15ddc5cba5962d3d3e5bf2d67b2e7da
@@ -1408,7 +1408,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P a78e865607194718e2ef958879dbf549ac3c9970
-R 2562256032b891190294739fad90243c
+P 9e489a71f2aeb1f13f9ca6f106b9144d07ca25aa
+R 75c2a8b340ff172a704bb3359504d6a3
 U drh
-Z b2f15a80162f9f125f88e21b8ca96ffa
+Z b1df76d2c021fec1e48360d9f33aa631
index 2df7d425e622d4243befc2dfa35d9f7620e8e9f2..fe02ea2e6e746a34ee4446878850fa39ebdac4ad 100644 (file)
@@ -1 +1 @@
-9e489a71f2aeb1f13f9ca6f106b9144d07ca25aa
\ No newline at end of file
+06338201f3f00151232e5c6a40edcdbea04d7553
\ No newline at end of file
index c3149ad9133313a594d6e8f96355e102b62bd1e3..f1bb69c16a3bbe8697993a7aad79a4977e0e09dc 100644 (file)
@@ -63,6 +63,9 @@ static const char * const azCompileOpt[] = {
 #if SQLITE_DISABLE_LFS
   "DISABLE_LFS",
 #endif
+#if SQLITE_ENABLE_8_3_NAMES
+  "ENABLE_8_3_NAMES",
+#endif
 #if SQLITE_ENABLE_API_ARMOR
   "ENABLE_API_ARMOR",
 #endif