Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add bitvec.lo to LIBOBJS and corresponding make rule (CVS 4813) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1d68f3af362f8bb5cdfbf60c60fb218b |
User & Date: | mlcreech 2008-02-27 03:22:49.000 |
Context
2008-03-01
| ||
23:34 | Fix typo for #2968 (CVS 4814) (check-in: d1f6b24382 user: mlcreech tags: trunk) | |
2008-02-27
| ||
03:22 | Add bitvec.lo to LIBOBJS and corresponding make rule (CVS 4813) (check-in: 1d68f3af36 user: mlcreech tags: trunk) | |
2008-02-26
| ||
18:40 | Fix a math error when computing how much memory to allocate for a new pager. (CVS 4812) (check-in: 690d05ceda user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
116 117 118 119 120 121 122 | # You should not have to change anything below this line ############################################################################### TCC += -DSQLITE_OMIT_LOAD_EXTENSION=1 # Object files for the SQLite library. # | | | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | # You should not have to change anything below this line ############################################################################### TCC += -DSQLITE_OMIT_LOAD_EXTENSION=1 # Object files for the SQLite library. # LIBOBJ = alter.lo analyze.lo attach.lo auth.lo bitvec.lo btmutex.lo btree.lo build.lo \ callback.lo complete.lo date.lo \ delete.lo expr.lo fault.lo func.lo \ hash.lo journal.lo insert.lo loadext.lo \ main.lo malloc.lo mem1.lo mem2.lo mem3.lo mem4.lo mutex.lo \ mutex_os2.lo mutex_unix.lo mutex_w32.lo \ opcodes.lo os.lo os_unix.lo os_win.lo os_os2.lo \ pager.lo parse.lo pragma.lo prepare.lo printf.lo random.lo \ |
︙ | ︙ | |||
360 361 362 363 364 365 366 367 368 369 370 371 372 373 | $(LTCOMPILE) -c $(TOP)/src/analyze.c attach.lo: $(TOP)/src/attach.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/attach.c auth.lo: $(TOP)/src/auth.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/auth.c btmutex.lo: $(TOP)/src/btmutex.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/btmutex.c btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h $(LTCOMPILE) -c $(TOP)/src/btree.c | > > > | 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | $(LTCOMPILE) -c $(TOP)/src/analyze.c attach.lo: $(TOP)/src/attach.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/attach.c auth.lo: $(TOP)/src/auth.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/auth.c bitvec.lo: $(TOP)/src/bitvec.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/bitvec.c btmutex.lo: $(TOP)/src/btmutex.c $(HDR) $(LTCOMPILE) -c $(TOP)/src/btmutex.c btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h $(LTCOMPILE) -c $(TOP)/src/btree.c |
︙ | ︙ |