Hi, Small patch to enable IPC on Windows terminal builds when including terminal support in VIM:
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -39,6 +39,7 @@ # Global IME support: GIME=yes (requires GUI=yes) # # Terminal support: TERMINAL=yes (default is yes) +# Requires CHANNEL. # # Sound support: SOUND=yes (default is yes) # @@ -115,7 +116,7 @@ # doesn't work) # # Inter process communication: CHANNEL=[yes or no] (default is yes if GUI -# is yes) +# or TERMINAL is yes) # # XPM Image Support: XPM=[path to XPM directory] # Default is "xpm", using the files included in the distribution. @@ -388,7 +389,7 @@ NETBEANS = $(GUI) !endif !ifndef CHANNEL -! if "$(FEATURES)"=="HUGE" +! if "$(FEATURES)"=="HUGE" || "$(TERMINAL)"=="yes" CHANNEL = yes ! else CHANNEL = $(GUI) TTFN -- Mike -- -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAKz_cXa2_-Fsw%3DiANUVUKLaHKz1tYeEO7eEO2VxubpoxV%3D540A%40mail.gmail.com.
