Overview
Comment: | Don't depend on Tcl 8.3 ..... |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | nijtmans |
Files: | files | file ages | folders |
SHA3-256: |
c4ff285b073f6724896da289c942038e |
User & Date: | jan.nijtmans on 2024-02-20 16:18:33 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-20
| ||
20:57 | "make install" now works on MacOS too (uses .dylib in stead of .so, no "doc" yet) check-in: 6778f7f147 user: jan.nijtmans tags: nijtmans | |
16:22 | Merge trunk check-in: 61fb454f56 user: jan.nijtmans tags: bohagan | |
16:18 | Don't depend on Tcl 8.3 ..... check-in: c4ff285b07 user: jan.nijtmans tags: nijtmans | |
16:09 | Add missing win/nmakehlp.c. Typo in tclOpts.h check-in: e2c4b7ced2 user: jan.nijtmans tags: nijtmans | |
Changes
tests/keytest1.tcl became executable with contents [897f9f74ad].
Modified tests/simpleClient.tcl from [abd896c23b] to [4d694417ae].
1 2 | #!/bin/sh # The next line is executed by /bin/sh, but not tcl \ | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh # The next line is executed by /bin/sh, but not tcl \ exec tclsh "$0" ${1+"$@"} package require tls set dir [file join [file dirname [info script]] ../tests/certs] set OPTS(-cafile) [file join $dir ca.pem] set OPTS(-cert) [file join $dir client.pem] set OPTS(-key) [file join $dir client.key] |
︙ | ︙ |
Modified tests/simpleServer.tcl from [ca9a28f88d] to [0be01a94d0].
1 2 | #!/bin/sh # The next line is executed by /bin/sh, but not tcl \ | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh # The next line is executed by /bin/sh, but not tcl \ exec tclsh "$0" ${1+"$@"} package require tls set dir [file join [file dirname [info script]] ../tests/certs] set OPTS(-cafile) [file join $dir ca.pem] set OPTS(-cert) [file join $dir server.pem] set OPTS(-key) [file join $dir server.key] |
︙ | ︙ |