changeset 7111:57c354f0115c v7.4.867

commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 15 15:57:29 2015 +0200 patch 7.4.867 Problem: Can't build on MS-Windows. (Taro Muraoka) Solution: Adjust #ifdef.
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Sep 2015 16:00:04 +0200
parents 400fa3572d9e
children 42d4abb11de5
files src/misc2.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -6342,7 +6342,7 @@ parse_queued_messages()
     /* Process the queued netbeans messages. */
     netbeans_parse_messages();
 # endif
-# ifdef FEAT_CLIENTSERVER
+# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
     /* Process the queued clientserver messages. */
     server_parse_messages();
 # endif
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    867,
+/**/
     866,
 /**/
     865,