# HG changeset patch # User Christian Brabandt # Date 1454019304 -3600 # Node ID 2981a37cec6150de385c7cbfd6fe9764d087e40c # Parent 05ab49635a503795945c846594fa3f8418d2a4ed commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33 Author: Bram Moolenaar Date: Thu Jan 28 23:01:49 2016 +0100 patch 7.4.1193 Problem: Can't build the channel feature on MS-Windows. Solution: Add #ifdef HAVE_POLL. diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -726,12 +726,14 @@ channel_wait(int fd, int timeout) break; } #else +# ifdef HAVE_POLL struct pollfd fds; fds.fd = fd; fds.events = POLLIN; if (poll(&fds, 1, timeout) <= 0) return FAIL; +# endif #endif return OK; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1193, +/**/ 1192, /**/ 1191,