Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | tclsh8.7 is out there... |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8b276cf9f1cdf2e932e73b0828760cb2 |
User & Date: | bch 2019-05-02 03:36:23.734 |
Context
2019-05-10
| ||
16:19 | Add the /thisdayinhistory page. ... (check-in: e7103eeb user: drh tags: trunk) | |
2019-05-02
| ||
03:36 | tclsh8.7 is out there... ... (check-in: 8b276cf9 user: bch tags: trunk) | |
2019-04-25
| ||
14:28 | Make full use of the new file_tempname() in "fossil diff" with both --from and --to options. Improve file_tempname() to allow for a suggested differentiator tag. ... (check-in: 1dd2527f user: drh tags: trunk) | |
Changes
Changes to autosetup/find-tclsh.
1 2 3 4 5 6 | #!/bin/sh # Looks for a suitable tclsh or jimsh in the PATH # If not found, builds a bootstrap jimsh from source d=`dirname "$0"` { "$d/jimsh0" "$d/test-tclsh"; } 2>/dev/null && exit 0 PATH="$PATH:$d"; export PATH | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh # Looks for a suitable tclsh or jimsh in the PATH # If not found, builds a bootstrap jimsh from source d=`dirname "$0"` { "$d/jimsh0" "$d/test-tclsh"; } 2>/dev/null && exit 0 PATH="$PATH:$d"; export PATH for tclsh in jimsh tclsh tclsh8.5 tclsh8.6 tclsh8.7; do { $tclsh "$d/test-tclsh"; } 2>/dev/null && exit 0 done echo 1>&2 "No installed jimsh or tclsh, building local bootstrap jimsh0" for cc in ${CC_FOR_BUILD:-cc} gcc; do { $cc -o "$d/jimsh0" "$d/jimsh0.c"; } 2>/dev/null || continue "$d/jimsh0" "$d/test-tclsh" && exit 0 done |
︙ | ︙ |