diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-12 16:10:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-12 16:10:51 +0100 |
commit | 2be7cb73f66cf69659195d9a8ad4beaa359f2865 (patch) | |
tree | 0e4212c3654d7e1b81e596eb7683e0d0e07672c9 /src/Make_mvc.mak | |
parent | ea56e167c87352f07a77d3661425e336817a7141 (diff) | |
download | vim-git-2be7cb73f66cf69659195d9a8ad4beaa359f2865.tar.gz |
patch 8.1.0733: too many #ifdefs for the multi-byte featurev8.1.0733
Problem: Too many #ifdefs for the multi-byte feature.
Solution: Tentatively always enable the multi-byte feature. If you have a
problem with this, please discuss on the Vim maillist.
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index baf0b7d69..0a9253011 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -26,15 +26,13 @@ # GUI interface: GUI=yes (default is no) # # GUI with DirectWrite (DirectX): DIRECTX=yes -# (default is yes if GUI=yes, requires GUI=yes and MBYTE=yes) +# (default is yes if GUI=yes, requires GUI=yes) # # Color emoji support: COLOR_EMOJI=yes # (default is yes if DIRECTX=yes, requires WinSDK 8.1 or later.) # # OLE interface: OLE=yes (usually with GUI=yes) # -# Multibyte support: MBYTE=yes (default is yes for NORMAL, BIG, HUGE) -# # IME support: IME=yes (requires GUI=yes) # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default # is yes) @@ -786,11 +784,6 @@ IME_LIB = imm32.lib !if "$(GIME)" == "yes" CFLAGS = $(CFLAGS) -DGLOBAL_IME OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj -MBYTE = yes -!endif - -!if "$(MBYTE)" == "yes" -CFLAGS = $(CFLAGS) -DFEAT_MBYTE !endif !if "$(GUI)" == "yes" |