Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Robustify '--with-miniz' option handling in 'auto.def'. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7cadfc973630281839a402cf89d26cd1 |
| User & Date: | mistachkin 2016-02-07 23:35:16.492 |
Context
|
2016-02-09
| ||
| 14:12 | json: added a few assertions and changed a few chars to ints to avoid potential signedness problems on ARM. check-in: 5c0dc2d352 user: stephan tags: trunk | |
|
2016-02-07
| ||
| 23:35 | Robustify '--with-miniz' option handling in 'auto.def'. check-in: 7cadfc9736 user: mistachkin tags: trunk | |
| 23:22 | Further enhance the 'sqlite3' command and make use of it in the json test. check-in: f9c14d7d6d user: mistachkin tags: trunk | |
Changes
Changes to auto.def.
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# Find tclsh for the test suite. Can't yet use jimsh for this.
cc-check-progs tclsh
define EXTRA_CFLAGS ""
define EXTRA_LDFLAGS ""
define USE_SYSTEM_SQLITE 0
define USE_LINENOISE 0
# This procedure is a customized version of "cc-check-function-in-lib",
# that does not modify the LIBS variable. Its use prevents prematurely
# pulling in libraries that will be added later anyhow (e.g. "-ldl").
proc check-function-in-lib {function libs {otherlibs {}}} {
if {[string length $otherlibs]} {
msg-checking "Checking for $function in $libs with $otherlibs..."
| > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# Find tclsh for the test suite. Can't yet use jimsh for this.
cc-check-progs tclsh
define EXTRA_CFLAGS ""
define EXTRA_LDFLAGS ""
define USE_SYSTEM_SQLITE 0
define USE_LINENOISE 0
define FOSSIL_ENABLE_MINIZ 0
# This procedure is a customized version of "cc-check-function-in-lib",
# that does not modify the LIBS variable. Its use prevents prematurely
# pulling in libraries that will be added later anyhow (e.g. "-ldl").
proc check-function-in-lib {function libs {otherlibs {}}} {
if {[string length $otherlibs]} {
msg-checking "Checking for $function in $libs with $otherlibs..."
|
| ︙ | ︙ |