]> granicus.if.org Git - vim/commitdiff
patch 8.0.1565: can't build Mac version without GUI v8.0.1565
authorBram Moolenaar <Bram@vim.org>
Sun, 4 Mar 2018 17:57:19 +0000 (18:57 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 4 Mar 2018 17:57:19 +0000 (18:57 +0100)
Problem:    Can't build Mac version without GUI.
Solution:   Adjust when IME_WITHOUT_XIM is defined.

src/version.c
src/vim.h

index 18d50af015b78f34bb362c7ac05a6d2a642531b6..01b812c1780d0953753a58d2e49a4bacb178bbc9 100644 (file)
@@ -774,6 +774,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1565,
 /**/
     1564,
 /**/
index f0d29afd0fa2819cd9c6ca692ab7bf366eddae53..21574064f944927bb78f455ce4ecf4f8dbd15f09 100644 (file)
--- a/src/vim.h
+++ b/src/vim.h
@@ -2118,16 +2118,19 @@ typedef enum {
 # define USE_MCH_ERRMSG
 #endif
 
-/* Whether IME is supported when XIM is not used. */
-# if defined(FEAT_MBYTE_IME) && \
-    (!defined(FEAT_GUI_W32) || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))
+# if (defined(FEAT_MBYTE_IME) \
+       && (!defined(FEAT_GUI_W32) \
+            || !(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
 #endif
 
 #if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \
        || defined(IME_WITHOUT_XIM) \
        || defined(FEAT_GUI_W32) \
-       || defined(MACOS_CONVERT))
+       || defined(FEAT_GUI_MAC))
 /* im_set_active() is available */
 # define HAVE_INPUT_METHOD
 #endif