Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an 'auto.def' issue that prevented using --with-tcl of a static Tcl with --static. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: | 28fd1c1bd4e438b6ed7a31906c6f2377 |
User & Date: | mistachkin 2017-11-30 19:42:46 |
Context
2017-12-03
| ||
11:16 | Refactor the symlink processing logic so that most of the file access routines take a new parameter indicating the conditions under which symlinks should and should not be followed. check-in: 1772357f user: drh tags: trunk | |
2017-12-02
| ||
14:39 | Rework the Setup/Skin page so that all edits are done on a draft, then tested, then the draft is published to become the default skin. This specific check-in is just the beginning. Must code needs to be added. This is just an incremental check-in. check-in: 9bafe6cb user: drh tags: skin-setup-refactor | |
2017-11-30
| ||
19:42 | Fix an 'auto.def' issue that prevented using --with-tcl of a static Tcl with --static. check-in: 28fd1c1b user: mistachkin tags: trunk | |
12:57 | Remove unused "#if 0...#endif" code from finfo.c. check-in: 563d481e user: drh tags: trunk | |
Changes
Changes to auto.def.
357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
/usr /usr/local /usr/share /opt/local] set msg "on your system" } } else { array set tclconfig [parse-tclconfig-sh $tclpath] set msg "at $tclpath" } if {![info exists tclconfig(TCL_INCLUDE_SPEC)]} { user-error "Cannot find Tcl $msg" } set tclstubs [opt-bool with-tcl-stubs] if {$tclprivatestubs} { define FOSSIL_ENABLE_TCL_PRIVATE_STUBS define USE_TCL_STUBS |
> > > |
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 |
/usr /usr/local /usr/share /opt/local] set msg "on your system" } } else { array set tclconfig [parse-tclconfig-sh $tclpath] set msg "at $tclpath" } if {[opt-bool static]} { set tclconfig(TCL_LD_FLAGS) { } } if {![info exists tclconfig(TCL_INCLUDE_SPEC)]} { user-error "Cannot find Tcl $msg" } set tclstubs [opt-bool with-tcl-stubs] if {$tclprivatestubs} { define FOSSIL_ENABLE_TCL_PRIVATE_STUBS define USE_TCL_STUBS |