Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add bitvec to build (CVS 4808) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c690dd68f20aa2137562dff573031ac0 |
User & Date: | mlcreech 2008-02-26 03:46:00.000 |
Context
2008-02-26
| ||
06:05 | Have sqlite3PagerPagecount() return -1 when the pager is in error state. Fix for #2961. (CVS 4809) (check-in: 427e7f8b4a user: danielk1977 tags: trunk) | |
03:46 | Add bitvec to build (CVS 4808) (check-in: c690dd68f2 user: mlcreech tags: trunk) | |
2008-02-23
| ||
21:55 | Fix a bug in the LIKE optimizer that occurs when the last character before the wildcard is an upper-case 'Z'. Ticket #2959. (CVS 4807) (check-in: 610574b23b user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
136 137 138 139 140 141 142 143 144 145 146 147 148 149 | # All of the source code files. # SRC = \ $(TOP)/src/alter.c \ $(TOP)/src/analyze.c \ $(TOP)/src/attach.c \ $(TOP)/src/auth.c \ $(TOP)/src/btmutex.c \ $(TOP)/src/btree.c \ $(TOP)/src/btree.h \ $(TOP)/src/build.c \ $(TOP)/src/callback.c \ $(TOP)/src/complete.c \ $(TOP)/src/date.c \ | > | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | # All of the source code files. # SRC = \ $(TOP)/src/alter.c \ $(TOP)/src/analyze.c \ $(TOP)/src/attach.c \ $(TOP)/src/auth.c \ $(TOP)/src/bitvec.c \ $(TOP)/src/btmutex.c \ $(TOP)/src/btree.c \ $(TOP)/src/btree.h \ $(TOP)/src/build.c \ $(TOP)/src/callback.c \ $(TOP)/src/complete.c \ $(TOP)/src/date.c \ |
︙ | ︙ | |||
213 214 215 216 217 218 219 220 221 222 223 224 225 226 | $(TOP)/ext/fts1/fts1_tokenizer1.c # Source code to the test files. # TESTSRC = \ $(TOP)/src/attach.c \ $(TOP)/src/btree.c \ $(TOP)/src/build.c \ $(TOP)/src/date.c \ $(TOP)/src/expr.c \ $(TOP)/src/func.c \ $(TOP)/src/insert.c \ $(TOP)/src/malloc.c \ | > | 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | $(TOP)/ext/fts1/fts1_tokenizer1.c # Source code to the test files. # TESTSRC = \ $(TOP)/src/attach.c \ $(TOP)/src/bitvec.c \ $(TOP)/src/btree.c \ $(TOP)/src/build.c \ $(TOP)/src/date.c \ $(TOP)/src/expr.c \ $(TOP)/src/func.c \ $(TOP)/src/insert.c \ $(TOP)/src/malloc.c \ |
︙ | ︙ |