diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-06 16:11:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-06 16:11:47 +0100 |
commit | 3b3a9a5609df2cbaef3512032ac47c1779fbc775 (patch) | |
tree | 8dbc878c2a288836438e4b7eef3e0bf7d50985c6 /src/vim.h | |
parent | 946acdac5b4e334f816e78f7876bde9d97b3d96a (diff) | |
download | vim-git-3b3a9a5609df2cbaef3512032ac47c1779fbc775.tar.gz |
patch 8.0.1581: cannot build Win32 GUI without +evalv8.0.1581
Problem: Cannot build Win32 GUI without +eval.
Solution: Define HAVE_INPUT_METHOD without +eval. (Ken Takata)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -2119,15 +2119,21 @@ typedef enum { #endif # if defined(FEAT_MBYTE) && defined(FEAT_EVAL) \ - && ((!defined(FEAT_GUI_W32) \ + && (!defined(FEAT_GUI_W32) \ || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) \ - || (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC))) -/* Whether IME is supported by im_get_status() defined in mbyte.c. */ + && !defined(FEAT_GUI_MAC) \ + && !defined(MACOS_CONVERT) +/* Whether IME is supported by im_get_status() defined in mbyte.c. + * For Win32 GUI it's in gui_w32.c when FEAT_MBYTE_IME or GLOBAL_IME is defined. + * for Mac it is in gui_mac.c for the GUI or in os_mac_conv.c when + * MACOS_CONVERT is defined. */ # define IME_WITHOUT_XIM #endif #if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \ || defined(IME_WITHOUT_XIM) \ + || (defined(FEAT_GUI_W32) \ + && (defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) \ || defined(FEAT_GUI_MAC)) /* im_set_active() is available */ # define HAVE_INPUT_METHOD |