Ken Takata wrote: > 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
Thanks, I'll include that. > 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. Well, I thought that when using HUGE features including +channel makes sense, and when someone intentionally wants to build with fewer features dropping +channel makes sense. -- Latest survey shows that 3 out of 4 people make up 75% of the world's population. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- 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.
