Skip to content

Commit

Permalink
patch 8.0.1565: can't build Mac version without GUI
Browse files Browse the repository at this point in the history
Problem:    Can't build Mac version without GUI.
Solution:   Adjust when IME_WITHOUT_XIM is defined.
  • Loading branch information
brammool committed Mar 4, 2018
1 parent f2bd8ef commit 107279c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -774,6 +774,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1565,
/**/ /**/
1564, 1564,
/**/ /**/
Expand Down
11 changes: 7 additions & 4 deletions src/vim.h
Expand Up @@ -2118,16 +2118,19 @@ typedef enum {
# define USE_MCH_ERRMSG # define USE_MCH_ERRMSG
#endif #endif


/* Whether IME is supported when XIM is not used. */ # if (defined(FEAT_MBYTE_IME) \
# if defined(FEAT_MBYTE_IME) && \ && (!defined(FEAT_GUI_W32) \
(!defined(FEAT_GUI_W32) || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))) \
|| (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC))
/* Whether IME is supported when XIM is not used, im_get_status() is defined in
* mbyte.c. */
# define IME_WITHOUT_XIM # define IME_WITHOUT_XIM
#endif #endif


#if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \ #if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \
|| defined(IME_WITHOUT_XIM) \ || defined(IME_WITHOUT_XIM) \
|| defined(FEAT_GUI_W32) \ || defined(FEAT_GUI_W32) \
|| defined(MACOS_CONVERT)) || defined(FEAT_GUI_MAC))
/* im_set_active() is available */ /* im_set_active() is available */
# define HAVE_INPUT_METHOD # define HAVE_INPUT_METHOD
#endif #endif
Expand Down

0 comments on commit 107279c

Please sign in to comment.