# HG changeset patch # User Christian Brabandt # Date 1442325604 -7200 # Node ID 57c354f0115cdeca2eb6de547ca5284ba0a10ab7 # Parent 400fa3572d9e6c832f81da0ed78d93174a6793ed commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da Author: Bram Moolenaar 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. diff --git a/src/misc2.c b/src/misc2.c --- 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 diff --git a/src/version.c b/src/version.c --- 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,