diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-24 22:29:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-24 22:29:21 +0200 |
commit | 8a77306fa170f9d95f2402e73b4a94a2692ce84f (patch) | |
tree | 1b02486ba966cc5ee70636ce9d62aea4e6f3dd5a /src/INSTALLpc.txt | |
parent | 2155441460a6dc0a72125f7860507693112a1460 (diff) | |
download | vim-git-8a77306fa170f9d95f2402e73b4a94a2692ce84f.tar.gz |
patch 8.0.0769: build problems with terminal on MS-Windowsv8.0.0769
Problem: Build problems with terminal on MS-Windows using MSVC.
Solution: Remove stdbool.h dependency. Only use ScreenLinesUC when it was
allocated. Fix typos. (Ken Takata)
Diffstat (limited to 'src/INSTALLpc.txt')
-rw-r--r-- | src/INSTALLpc.txt | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/INSTALLpc.txt b/src/INSTALLpc.txt index b875b77c9..762fdb601 100644 --- a/src/INSTALLpc.txt +++ b/src/INSTALLpc.txt @@ -706,20 +706,17 @@ Or when using MinGW (as one line): 13. Building with Terminal support ================================== -Vim with Terminal support can be built with either MSVC, or MinGW or Cygwin. +Vim with Terminal support can be built with either MSVC, MinGW or Cygwin. This uses the included libvterm and winpty. No extra header files or -libraries are needed for building. +libraries are needed for building. Just set TERMINAL to yes. -Running Vim with terminal support requires the following two winpty files: +E.g. When using MSVC: - winpty.dll - winpty-agent.dll + nmake -f Make_mvc.mak TERMINAL=yes -You can download them from the following page: - - https://github.com/rprichard/winpty +Or when using MinGW (as one line): -Just put the DLL files somewhere in your PATH. + mingw32-make -f Make_mingw.mak TERMINAL=yes 14. Windows 3.1x |