Re: minor bugs in window vim compilation

2010-09-18 Thread bill lam
Птн, 17 Сен 2010, Bram Moolenaar писал(а): Bill Lam wrote: I was able to build window vim using mingw cross-compiled under debian. But I found it failed to link for TINY build, the reason is inside os_mswin.c, enc_to_utf8 and acp_to_enc routines are nested inside feature clipboard,

Re: minor bugs in window vim compilation

2010-09-18 Thread Bram Moolenaar
Bill Lam wrote: ðÔÎ, 17 óÅÎ 2010, Bram Moolenaar ÐÉÓÁÌ(Á): Bill Lam wrote: I was able to build window vim using mingw cross-compiled under debian. But I found it failed to link for TINY build, the reason is inside os_mswin.c, enc_to_utf8 and acp_to_enc routines are nested

Re: minor bugs in window vim compilation

2010-09-18 Thread bill lam
Сбт, 18 Сен 2010, Bram Moolenaar писал(а): It appears that IME is defined, resulting in FEAT_MBYTE_IME to be defined, and feature.h will then define FEAT_MBYTE. Try removing IME. I tested it needs to turn off MBYTE and IME in order to compile TINY. I'm still not convincing why MBYTE and IME

Re: minor bugs in window vim compilation

2010-09-17 Thread Bram Moolenaar
Bill Lam wrote: I was able to build window vim using mingw cross-compiled under debian. But I found it failed to link for TINY build, the reason is inside os_mswin.c, enc_to_utf8 and acp_to_enc routines are nested inside feature clipboard, but moving these feat_mbyte out of clipboard's #IF

minor bugs in window vim compilation

2010-09-13 Thread bill lam
I was able to build window vim using mingw cross-compiled under debian. But I found it failed to link for TINY build, the reason is inside os_mswin.c, enc_to_utf8 and acp_to_enc routines are nested inside feature clipboard, but moving these feat_mbyte out of clipboard's #IF block. It can build