Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make it easier to build with the icu extension enabled. Include icu.c in the amalgamation source. Ticket #3245. (CVS 5533) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e42ff97ba7d9fcda699a63fc8bc609d5 |
User & Date: | danielk1977 2008-08-04 11:49:20.000 |
Context
2008-08-04
| ||
13:44 | Enhanced markings for experimental and deprecated interfaces. (CVS 5534) (check-in: 7e6ec5d53d user: drh tags: trunk) | |
11:49 | Make it easier to build with the icu extension enabled. Include icu.c in the amalgamation source. Ticket #3245. (CVS 5533) (check-in: e42ff97ba7 user: danielk1977 tags: trunk) | |
04:39 | Add an assert() statement that will alert us if the potential problem identified by #3243 ever becomes a reality. (CVS 5532) (check-in: 34208f0ba4 user: danielk1977 tags: trunk) | |
Changes
Changes to main.mk.
︙ | ︙ | |||
54 55 56 57 58 59 60 | main.o malloc.o mem1.o mem2.o mem3.o mem4.o mem5.o mem6.o \ mutex.o mutex_os2.o mutex_unix.o mutex_w32.o \ opcodes.o os.o os_os2.o os_unix.o os_win.o \ pager.o parse.o pragma.o prepare.o printf.o random.o \ select.o status.o table.o $(TCLOBJ) tokenize.o trigger.o \ update.o util.o vacuum.o \ vdbe.o vdbeapi.o vdbeaux.o vdbeblob.o vdbefifo.o vdbemem.o \ | | | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | main.o malloc.o mem1.o mem2.o mem3.o mem4.o mem5.o mem6.o \ mutex.o mutex_os2.o mutex_unix.o mutex_w32.o \ opcodes.o os.o os_os2.o os_unix.o os_win.o \ pager.o parse.o pragma.o prepare.o printf.o random.o \ select.o status.o table.o $(TCLOBJ) tokenize.o trigger.o \ update.o util.o vacuum.o \ vdbe.o vdbeapi.o vdbeaux.o vdbeblob.o vdbefifo.o vdbemem.o \ where.o utf.o legacy.o vtab.o rtree.o icu.o EXTOBJ = icu.o EXTOBJ += fts1.o \ fts1_hash.o \ fts1_tokenizer1.o \ fts1_porter.o EXTOBJ += fts2.o \ |
︙ | ︙ |
Changes to tool/mksqlite3c.tcl.
︙ | ︙ | |||
276 277 278 279 280 281 282 283 284 285 286 287 | fts3.c fts3_hash.c fts3_porter.c fts3_tokenizer.c fts3_tokenizer1.c rtree.c } { copy_file tsrc/$file } close $out | > | 276 277 278 279 280 281 282 283 284 285 286 287 288 | fts3.c fts3_hash.c fts3_porter.c fts3_tokenizer.c fts3_tokenizer1.c rtree.c icu.c } { copy_file tsrc/$file } close $out |