Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | unbreak Autoconf-based build procedure by added missing backup.lo to the list of library objects (CVS 6311) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
94945801973c0e659de3f429c98a7d95 |
User & Date: | rse 2009-02-20 22:27:42.000 |
Context
2009-02-21
| ||
22:38 | The sqlite3.def file is automatically generated and is not suppose to be part of the source code repository. So it is hereby removed. Ticket #3671. (CVS 6312) (check-in: 5dcda15409 user: drh tags: trunk) | |
2009-02-20
| ||
22:27 | unbreak Autoconf-based build procedure by added missing backup.lo to the list of library objects (CVS 6311) (check-in: 9494580197 user: rse tags: trunk) | |
10:58 | Instead of using SetNumColumns, specify the number of columns in a table or index using the P4 argument. (CVS 6310) (check-in: e43ed64963 user: danielk1977 tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
159 160 161 162 163 164 165 | NAWK = @AWK@ # You should not have to change anything below this line ############################################################################### # Object files for the SQLite library (non-amalgamation). # | | | 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | NAWK = @AWK@ # You should not have to change anything below this line ############################################################################### # Object files for the SQLite library (non-amalgamation). # OBJS0 = alter.lo analyze.lo attach.lo auth.lo backup.lo bitvec.lo btmutex.lo \ btree.lo build.lo callback.lo complete.lo date.lo \ delete.lo expr.lo fault.lo func.lo global.lo \ hash.lo journal.lo insert.lo legacy.lo loadext.lo \ main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \ memjournal.lo \ mutex.lo mutex_noop.lo mutex_os2.lo mutex_unix.lo mutex_w32.lo \ opcodes.lo os.lo os_unix.lo os_win.lo os_os2.lo \ |
︙ | ︙ | |||
514 515 516 517 518 519 520 521 522 523 524 525 526 527 | attach.lo: $(TOP)/src/attach.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/attach.c auth.lo: $(TOP)/src/auth.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/auth.c bitvec.lo: $(TOP)/src/bitvec.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/bitvec.c btmutex.lo: $(TOP)/src/btmutex.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/btmutex.c btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h | > > > | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 | attach.lo: $(TOP)/src/attach.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/attach.c auth.lo: $(TOP)/src/auth.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/auth.c backup.lo: $(TOP)/src/backup.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/backup.c bitvec.lo: $(TOP)/src/bitvec.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/bitvec.c btmutex.lo: $(TOP)/src/btmutex.c $(HDR) $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/btmutex.c btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h |
︙ | ︙ |