Check-in [301d32328a]
Overview
Comment:Updated to indicate that we require Tcl 8.5
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | tls-1-7
Files: files | file ages | folders
SHA1: 301d32328a0a05934d3c86c0c5ba31760f65a710
User & Date: rkeene on 2016-12-06 16:27:34
Other Links: branch diff | manifest | tags
Context
2016-12-06
16:38
Enabled a more tolerant (if confusing) mechanism for requiring Tcl 8.5 check-in: 0ee20f0650 user: rkeene tags: tls-1-7
16:27
Updated to indicate that we require Tcl 8.5 check-in: 301d32328a user: rkeene tags: tls-1-7
16:18
Indicated in help that an argument is required for --with-ssl check-in: 8fcef79719 user: rkeene tags: tls-1-7
Changes

Modified pkgIndex.tcl.in from [69b06405aa] to [69126671a0].

1
2
3
4
5
6
7
8
9
10
11
12
package ifneeded tls @PACKAGE_VERSION@ [list apply {{dir} {
	if {{@TCLEXT_BUILD@} eq "static"} {
		load {} Tls
	} else {
		load [file join $dir tcltls.@SHOBJEXT@] Tls
	}

	set tlsTclInitScript [file join $dir tls.tcl]
	if {[file exists $tlsTclInitScript]} {
		source $tlsTclInitScript
	}
}} $dir]
|










|
1
2
3
4
5
6
7
8
9
10
11
12
package ifneeded tls @PACKAGE_VERSION@ [join [list [list package require Tcl 8.5] [list apply {{dir} {
	if {{@TCLEXT_BUILD@} eq "static"} {
		load {} Tls
	} else {
		load [file join $dir tcltls.@SHOBJEXT@] Tls
	}

	set tlsTclInitScript [file join $dir tls.tcl]
	if {[file exists $tlsTclInitScript]} {
		source $tlsTclInitScript
	}
}} $dir]] "; "]