Hi, After 7.4.1065, 'pythondll' or other similar options can be also used on Windows. However some part of the documents are not updated. Here is a patch for this.
Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # Parent 655b74e20f72b15f112378a81010752fe03d7a32 # Parent a1be3dbd8d1e43af333fba34425f1c34fd03ed09 diff --git a/runtime/doc/if_lua.txt b/runtime/doc/if_lua.txt --- a/runtime/doc/if_lua.txt +++ b/runtime/doc/if_lua.txt @@ -410,13 +410,20 @@ This means that Vim will search for the when needed. When you don't use the Lua interface you don't need it, thus you can use Vim without this file. -On MS-Windows to use the Lua interface the Lua DLL must be in your search path. -In a console window type "path" to see what directories are used. The version -of the DLL must match the Lua version Vim was compiled with. -On Unix the 'luadll' option can be used to specify the Lua shared library file -instead of DYNAMIC_LUA_DLL file what was specified at compile time. The -version of the shared library must match the Lua version Vim was compiled with. +MS-Windows ~ + +To use the Lua interface the Lua DLL must be in your search path. In a +console window type "path" to see what directories are used. The 'luadll' +option can be also used to specify the Lua DLL. The version of the DLL must +match the Lua version Vim was compiled with. + + +Unix ~ + +The 'luadll' option can be used to specify the Lua shared library file instead +of DYNAMIC_LUA_DLL file what was specified at compile time. The version of +the shared library must match the Lua version Vim was compiled with. ============================================================================== diff --git a/runtime/doc/if_perl.txt b/runtime/doc/if_perl.txt --- a/runtime/doc/if_perl.txt +++ b/runtime/doc/if_perl.txt @@ -284,7 +284,8 @@ used for building Vim. To use the Perl interface the Perl DLL must be in your search path. If Vim reports it cannot find the perl512.dll, make sure your $PATH includes the directory where it is located. The Perl installer normally does that. -In a console window type "path" to see what directories are used. +In a console window type "path" to see what directories are used. The +'perldll' option can be also used to specify the Perl DLL. The name of the DLL must match the Perl version Vim was compiled with. Currently the name is "perl512.dll". That is for Perl 5.12. To know for diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -686,18 +686,24 @@ This means that Vim will search for the when needed. When you don't use the Python interface you don't need it, thus you can use Vim without this file. -On MS-Windows to use the Python interface the Python DLL must be in your search -path. In a console window type "path" to see what directories are used. + +MS-Windows ~ + +To use the Python interface the Python DLL must be in your search path. In a +console window type "path" to see what directories are used. The 'pythondll' +or 'pythonthreedll' option can be also used to specify the Python DLL. The name of the DLL must match the Python version Vim was compiled with. Currently the name is "python24.dll". That is for Python 2.4. To know for sure edit "gvim.exe" and search for "python\d*.dll\c". -On Unix the 'pythondll' or 'pythonthreedll' option can be used to specify the -Python shared library file instead of DYNAMIC_PYTHON_DLL or -DYNAMIC_PYTHON3_DLL file what were specified at compile time. The version of -the shared library must match the Python 2.x or Python 3 version Vim was -compiled with. + +Unix ~ + +The 'pythondll' or 'pythonthreedll' option can be used to specify the Python +shared library file instead of DYNAMIC_PYTHON_DLL or DYNAMIC_PYTHON3_DLL file +what were specified at compile time. The version of the shared library must +match the Python 2.x or Python 3 version Vim was compiled with. ============================================================================== 10. Python 3 *python3* diff --git a/runtime/doc/if_ruby.txt b/runtime/doc/if_ruby.txt --- a/runtime/doc/if_ruby.txt +++ b/runtime/doc/if_ruby.txt @@ -199,6 +199,7 @@ This means that Vim will search for the when needed. When you don't use the Ruby interface you don't need it, thus you can use Vim even though this library file is not on your system. + MS-Windows ~ You need to install the right version of Ruby for this to work. You can find @@ -207,7 +208,8 @@ http://www.garbagecollect.jp/ruby/mswin3 Currently that is ruby-1.9.1-p429-i386-mswin32.zip To use the Ruby interface the Ruby DLL must be in your search path. In a -console window type "path" to see what directories are used. +console window type "path" to see what directories are used. The 'rubydll' +option can be also used to specify the Ruby DLL. The name of the DLL must match the Ruby version Vim was compiled with. Currently the name is "msvcrt-ruby191.dll". That is for Ruby 1.9.1. To know @@ -218,6 +220,7 @@ and comment-out the check for _MSC_VER. You may also need to rename the include directory name to match the version, strangely for Ruby 1.9.3 the directory is called 1.9.1. + Unix ~ The 'rubydll' option can be used to specify the Ruby shared library file diff --git a/runtime/doc/if_tcl.txt b/runtime/doc/if_tcl.txt --- a/runtime/doc/if_tcl.txt +++ b/runtime/doc/if_tcl.txt @@ -526,7 +526,8 @@ can use Vim without this file. MS-Windows ~ To use the Tcl interface the Tcl DLL must be in your search path. In a -console window type "path" to see what directories are used. +console window type "path" to see what directories are used. The 'tcldll' +option can be also used to specify the Tcl DLL. The name of the DLL must match the Tcl version Vim was compiled with. Currently the name is "tcl86.dll". That is for Tcl 8.6. To know for sure
