Skip to content

Commit 61843a7

Browse files
authored
Merge pull request #245 from k-takata/disable-tcl
Disable ActiveTcl 8.6.6
2 parents 88dbdee + b2350e2 commit 61843a7

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ warning will vanish, once the certificate has been used more widely.
3131
If you want to avoid this warning, you can use the latest release with the old certificate
3232
[v8.2.577](https://github.com/vim/vim-win32-installer/releases/tag/v8.2.0577).
3333

34-
If you need a dynamic interface to Perl, Python2, Python3, Ruby, TCL, Lua or
34+
If you need a dynamic interface to Perl, Python2, Python3, Ruby, <del>TCL,</del> Lua or
3535
Racket/MzScheme, make sure you also install the following. Vim will work
3636
without it, but some Plugin might need this additional dependency. (e.g.
3737
[Gundo](https://github.com/sjl/gundo.vim) needs a working Python2 installation,
@@ -42,7 +42,7 @@ installed in addition to Vim. Without it Vim won't be able to use that feature!
4242
You can find those interperters here:
4343

4444
* [Strawberry Perl](http://strawberryperl.com/) 5.32
45-
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
45+
* <del>[ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6</del> (currently disabled)
4646
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.4
4747
* [Python](https://www.python.org/downloads/) 2.7
4848
* [Python 3](https://www.python.org/downloads/) 3.10

appveyor.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,16 @@ call :downloadfile %PERL_URL% downloads\perl.zip
123123
7z x downloads\perl.zip perl -o%PERL_DIR%\.. > nul || exit 1
124124

125125
:: Tcl
126+
goto skiptcl
127+
126128
call :downloadfile %TCL_URL% downloads\tcl.exe
127129
mkdir c:\ActiveTclTemp
128130
start /wait downloads\tcl.exe /extract:c:\ActiveTclTemp /exenoui /exenoupdates /quiet /norestart
129131
for /d %%i in (c:\ActiveTclTemp\*) do move %%i %TCL_DIR%
130132
copy %TCL_DIR%\bin\%TCL_DLL% vim\src\
131133

134+
:skiptcl
135+
132136
:: Python 3
133137
call :downloadfile %PYTHON3_URL% downloads\python3.exe
134138
cmd /c start /wait downloads\python3.exe /quiet TargetDir=%PYTHON3_DIR% Include_pip=0 Include_tcltk=0 Include_test=0 Include_tools=0 AssociateFiles=0 Shortcuts=0 Include_doc=0 Include_launcher=0 InstallLauncherAllUsers=0
@@ -233,7 +237,6 @@ nmake -f Make_mvc.mak ^
233237
DYNAMIC_PYTHON=yes PYTHON=%PYTHON_DIR% ^
234238
DYNAMIC_PYTHON3=yes PYTHON3=%PYTHON3_DIR% ^
235239
DYNAMIC_LUA=yes LUA=%LUA_DIR% ^
236-
DYNAMIC_TCL=yes TCL=%TCL_DIR% ^
237240
DYNAMIC_RUBY=yes RUBY=%RUBY_DIR% RUBY_MSVCRT_NAME=msvcrt ^
238241
DYNAMIC_MZSCHEME=yes "MZSCHEME=%RACKET_DIR%" ^
239242
TERMINAL=yes ^
@@ -246,7 +249,6 @@ nmake -f Make_mvc.mak ^
246249
DYNAMIC_PYTHON=yes PYTHON=%PYTHON_DIR% ^
247250
DYNAMIC_PYTHON3=yes PYTHON3=%PYTHON3_DIR% ^
248251
DYNAMIC_LUA=yes LUA=%LUA_DIR% ^
249-
DYNAMIC_TCL=yes TCL=%TCL_DIR% ^
250252
DYNAMIC_RUBY=yes RUBY=%RUBY_DIR% RUBY_MSVCRT_NAME=msvcrt ^
251253
DYNAMIC_MZSCHEME=yes "MZSCHEME=%RACKET_DIR%" ^
252254
TERMINAL=yes ^

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ deploy:
110110
<summary>Interface Informations</summary>
111111
112112
* [Strawberry Perl](http://strawberryperl.com/) 5.32
113-
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
113+
<!-- * [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6 -->
114114
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.4
115115
* [Python](https://www.python.org/downloads/) 2.7
116116
* [Python3](https://www.python.org/downloads/) 3.10

0 commit comments

Comments
 (0)