50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
cd C:\test\tcltls\tcltls-1.7.22\win
nmake -f makefile.vc TCLDIR=c:\test\tcl8610 SSL_INSTALL_FOLDER=C:\test\tcltls\openssl
nmake -f makefile.vc install TCLDIR=c:\test\tcl8610 INSTALLDIR=c:\test\tcltls SSL_INSTALL_FOLDER=C:\test\tcltls\openssl
tls.c:
Lines 1779, 1839: replace
int Tls_Init by
DLLEXPORT int Tls_Init
tls.h: same change
lappend auto_path {C:\test\tcltls\tls1.7.22}
package require tls
|
<
<
|
<
|
>
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
cd C:\test\tcltls\tcltls-1.7.22\win
nmake -f makefile.vc TCLDIR=c:\test\tcl8610 SSL_INSTALL_FOLDER=C:\test\tcltls\openssl
nmake -f makefile.vc install TCLDIR=c:\test\tcl8610 INSTALLDIR=c:\test\tcltls SSL_INSTALL_FOLDER=C:\test\tcltls\openssl
3) Test
Start tclsh or wish
lappend auto_path {C:\test\tcltls\tls1.7.22}
package require tls
A small "1.7.22" showing up is hopefully the end of this long way...
|