Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for ticket #138: Makefile doesn't use exec_prefix, has some install problems (CVS 724) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
97fc4a71a12b52cda67b5192c3bd7bd1 |
User & Date: | jadams 2002-08-22 18:18:36.000 |
Context
2002-08-24
| ||
18:24 | Change the way token memory is allocated in an effort to fix ticket #136. There is now a memory leak when using views of views. (CVS 725) (check-in: 22d8726e61 user: drh tags: trunk) | |
2002-08-22
| ||
18:18 | Fix for ticket #138: Makefile doesn't use exec_prefix, has some install problems (CVS 724) (check-in: 97fc4a71a1 user: jadams tags: trunk) | |
2002-08-21
| ||
11:26 | Fix for ticket #137: Use getpwuid() instead of getpwent(). (CVS 723) (check-in: ea011990c5 user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + | # same unless your are cross-compiling.) # TCC = @TARGET_CC@ @TARGET_CFLAGS@ -I. -I${TOP}/src # Some standard variables and programs # prefix = @prefix@ exec_prefix = @exec_prefix@ INSTALL = @INSTALL@ LIBTOOL = ./libtool # Compiler options needed for programs that use the TCL library. # TCL_FLAGS = @TARGET_TCL_INC@ |
︙ | |||
117 118 119 120 121 122 123 | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | - + - + - + | # of the most recently modified source code file # last_change: $(SRC) cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \ | awk '{print $$5,$$6}' >last_change libsqlite.la: $(LIBOBJ) |
︙ | |||
305 306 307 308 309 310 311 | 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | + - - + + + + | faq.html doc: $(DOC) mkdir -p doc mv $(DOC) doc install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(exec_prefix)/lib |