diff src/channel.c @ 7793:2981a37cec61 v7.4.1193

commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Thu, 28 Jan 2016 23:15:04 +0100
parents 192ae655ac91
children 4f23088b47ea
line wrap: on
line diff
--- 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;
 }