comparison src/Make_cyg_ming.mak @ 15450:bb421f682528 v8.1.0733

patch 8.1.0733: too many #ifdefs for the multi-byte feature commit https://github.com/vim/vim/commit/2be7cb73f66cf69659195d9a8ad4beaa359f2865 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 12 16:10:51 2019 +0100 patch 8.1.0733: too many #ifdefs for the multi-byte feature 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Jan 2019 16:15:04 +0100
parents a6330a49e036
children 1d2b5c016f17
comparison
equal deleted inserted replaced
15449:869f88d11e31 15450:bb421f682528
62 # Set to path to iconv.h and libiconv.a to enable using 'iconv.dll'. 62 # Set to path to iconv.h and libiconv.a to enable using 'iconv.dll'.
63 # Use "yes" when the path does not need to be define. 63 # Use "yes" when the path does not need to be define.
64 #ICONV="." 64 #ICONV="."
65 ICONV=yes 65 ICONV=yes
66 GETTEXT=yes 66 GETTEXT=yes
67
68 # Set to yes to include multibyte support.
69 MBYTE=yes
70 67
71 # Set to yes to include IME support. 68 # Set to yes to include IME support.
72 IME=yes 69 IME=yes
73 DYNAMIC_IME=yes 70 DYNAMIC_IME=yes
74 71
909 LIB += -loleaut32 906 LIB += -loleaut32
910 OBJ += $(OUTDIR)/if_ole.o 907 OBJ += $(OUTDIR)/if_ole.o
911 USE_STDCPLUS = yes 908 USE_STDCPLUS = yes
912 endif 909 endif
913 910
914 ifeq (yes, $(MBYTE))
915 DEFINES += -DFEAT_MBYTE
916 endif
917
918 ifeq (yes, $(IME)) 911 ifeq (yes, $(IME))
919 DEFINES += -DFEAT_MBYTE_IME 912 DEFINES += -DFEAT_MBYTE_IME
920 ifeq (yes, $(DYNAMIC_IME)) 913 ifeq (yes, $(DYNAMIC_IME))
921 DEFINES += -DDYNAMIC_IME 914 DEFINES += -DDYNAMIC_IME
922 else 915 else