Hi Bram,

2016/6/3 Fri 3:26:49 UTC+9 Bram Moolenaar wrote:
> Patch 7.4.1880
> Problem:    MS-Windows console build defaults to not having +channel.
> Solution:   Include the channel feature if building with huge features.
> Files:      src/Make_mvc.mak

I think it's also better to change Make_cyg_ming.mak.
E.g.:

--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -67,7 +67,11 @@ CSCOPE=yes
 # Set to yes to enable Netbeans support (requires CHANNEL).
 NETBEANS=$(GUI)
 # Set to yes to enable inter process communication.
+ifeq (HUGE, $(FEATURES))
+CHANNEL=yes
+else
 CHANNEL=$(GUI)
+endif
 
 
 # Link against the shared version of libstdc++ by default.  Set


Or just simply:

--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -67,7 +67,7 @@ CSCOPE=yes
 # Set to yes to enable Netbeans support (requires CHANNEL).
 NETBEANS=$(GUI)
 # Set to yes to enable inter process communication.
-CHANNEL=$(GUI)
+CHANNEL=yes
 
 
 # Link against the shared version of libstdc++ by default.  Set


Now the default feature is HUGE, the default channel setting can be "yes".
The latter one is easier to understand when someone want to change the setting.


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.

Raspunde prin e-mail lui